.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .form-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-header {
        margin-bottom: 12px;
    }
}

.logo-img {
    width: 45px;
}

@media (max-width: 768px) {
    .logo-img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 32px;
    }
}

.lang-switcher {
    display: none !important;
}

.lang-pill-toggle {
    min-width: 64px;
    height: 32px;
    border: 1px solid rgba(23, 159, 117, 0.35);
    border-radius: 999px;
    background: #fff;
    color: #179f75;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    padding: 0 10px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(23, 159, 117, 0.12);
}

@media (max-width: 768px) {
    .lang-pill-toggle {
        min-width: 56px;
        height: 28px;
        font-size: 0.95rem;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .lang-pill-toggle {
        min-width: 48px;
        height: 24px;
        font-size: 0.8rem;
        padding: 0 6px;
    }
}

.form-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-content-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .form-content-wrapper {
        max-width: 100%;
        justify-content: flex-start;
        padding: 6px 0 12px;
    }
}

.login-prompt {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .login-prompt {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .login-prompt {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

.login-prompt a {
    color: var(--ynmo-green);
    text-decoration: none;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .step-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 18px;
        margin-bottom: 14px;
        line-height: 1.3;
    }
}

.asterisk {
    color: #e11d48;
}

.form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .form-footer {
        margin-top: 30px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .form-footer {
        margin-top: 18px;
        gap: 8px;
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.form-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.form-footer a:hover {
    color: var(--ynmo-green);
}

.separator {
    color: #cbd5e1;
}
