
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Changed from height */
    padding: 1rem; /* Prevents content flush with screen edges */
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    text-align: center;
    padding: 2rem;
}

.logo-placeholder {
    margin-bottom: 1rem;
    background-color: #69665f;
    border-radius: 4px;
    overflow: hidden;
    width: 94%;
    aspect-ratio: 1 / 1; /* Keeps it square regardless of width */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3%;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the box, maintains aspect ratio, crops if necessary */
    display: block;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #69665f;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, select {
    width: 100%;
    padding: 0.75rem; /* Increased from 0.5rem */
    font-size: 1rem; /* Increased for better readability */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


button {
    width: 100%;
    padding: 0.75rem;
    background-color: #69665f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #353330;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
}

.success-message {
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #333;
    text-align: center;
}

.marketing-consent {
    display: flex;
    align-items: center;
    text-align: left;
    margin-top: 10px;
}

input#tickbox {
    margin-right: 8px;
    width: auto;
}