/* ------------------ SIGNUP SECTION ------------------ */
.trial-notice {
    width: 100%;
    height: auto;
    background-color: #D1DDCE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    text-align: left;
    padding: 24px 16px;
    color: #000;
}

.signup-section {
    width: 100%;
    min-height: 902px;
    /* desktop default height */
    background: url('../images/signup-bg.png') no-repeat center top;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    /* container on the left */
    padding-left: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
    box-sizing: border-box;
}

/* Signup container */
.signup-container {
    width: 808px;
    min-height: 842px;
    background-color: #252200;
    border-radius: 60px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Title */
.signup-title {
    font-family: 'Roboto Slab', serif;
    font-size: 45px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

/* Form rows */
.signup-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.signup-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.signup-form .form-group.full-width {
    flex: 1 1 100%;
}

/* Labels */
.signup-form label {
    font-family: "Roboto Slab";
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Inputs */
.signup-form input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid #BDBABA24;
    background-color: #211F05;
    color: #ffffff;
    font-size: 14px;
    font-family: "Roboto Slab";
    opacity: 60%;
}

.signup-form input::placeholder {
    color: #FFED48;
    font-family: 'Inter', sans-serif;
}

/* Discount row */
.discount-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.btn-apply {
    height: 48px;
    border: 1px solid white !important;
    padding: 0 20px;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    width: 239px;
}

/* Continue button */
.btn-continue {
    width: 100%;
    height: 48px;
    background-color: #FFED48;
    color: #000;
    border: none;
    border-radius: 26px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 16px;
    font-family: Helvetica;
}

/* Login link */
.login-link {
    text-align: center;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.login-link a {
    text-decoration: underline;
    color: #FFED48;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 426px) {

    .trial-notice {
        text-align: center;
    }

    /* Remove desktop background from signup-section */
    .signup-section {
        min-height: auto;
        /* remove desktop height */
        padding: 0 !important;
        justify-content: flex-start;
        background: none;
        /* remove desktop bg */
        flex-direction: column;
        gap: 16px;
        /* spacing between bg and container */
    }

    /* Mobile background div */
    .signup-bg {
        display: block;
        width: 100%;
        height: 426px;
        background: url('../images/signup-bg.png') no-repeat center top;
        background-position: 56% !important;
        background-size: cover;
        margin-bottom: 16px;
    }

    /* Signup container adjustments */
    .signup-container {
        width: 100%;
        margin: 0 auto;
        padding: 24px;
    }

    /* Stack form rows vertically */
    .signup-form .form-row {
        flex-direction: column;
    }

    .discount-row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Signup title */
    .signup-title {
        font-size: 32px;
    }

    .discount-row {
        display: flex;
        flex-direction: row !important;
        gap: 8px;
        align-items: end;
    }

    .discount-row .form-group {
        flex: 1;
        min-width: 0;
    }

    .btn-apply {
        flex: 0 0 auto;
        width: auto;
    }
}