@font-face {
    font-family: 'Maxi ABC';
    src: url('Fonts/ABCMaxiRound-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('Fonts/SuisseIntl-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #231f20;
    color: #FFFFFF;
    font-family: 'Suisse Intl', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
}

.logo {
    max-width: 150px;
    margin-bottom: 2rem;
    filter: invert(1);
}

.tagline {
    font-family: 'Maxi ABC', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 5vw, 3rem); /* Responsive font size */
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 2rem;
}


.subhead {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem); /* Responsive font size */
    font-weight: normal;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto 2rem auto;
}

.divider {
    width: 1px;
    height: 60px;
    background-color: #555;
    margin: 1.5rem auto;
}

.signup-form {
    max-width: 400px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 12px;
    padding: 1rem;
    color: #FFFFFF;
    font-family: 'Suisse Intl', sans-serif;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #888;
    font-family: 'Suisse Intl', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #999;
}

.checkbox-field {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 0.75rem;
    color: #aaa;
}

.checkbox-field input {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: relative;
    display: grid;
    place-content: center;
}

.checkbox-field input::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-field input:checked::before {
    transform: scale(1);
}

.cta-button {
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Maxi ABC', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #cccccc;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .images {
        flex-direction: column;
    }

    .images img {
        max-width: 100%;
    }
}
