.auth-modern {
    background: #f5f7fb;
    min-height: 100vh;
}

.auth-modern__hero {
    padding: 4.5rem 0 3.5rem;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 50%), linear-gradient(135deg, #0f8b8d, #0f5d61);
    color: #fff;
    text-align: center;
}

.auth-modern__hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.auth-modern__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    display: inline-block;
}

.auth-modern__hero-inner h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-modern__hero-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.auth-modern__hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-modern__text-link {
    color: #fff;
    font-weight: 600;
}

.auth-modern__body {
    margin-top: -80px;
    padding-bottom: 3rem;
}

.auth-modern__card {
    background: #fff;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    margin: 0 auto;
    max-width: 720px;
    box-shadow: 0 40px 80px -60px rgba(9, 14, 40, 0.45);
    border: 1px solid rgba(10, 25, 47, 0.06);
}

.auth-modern__card-head h2 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.auth-modern__card-head p {
    color: #5c6374;
    margin-bottom: 1.5rem;
}

.auth-modern__card-body .form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f1d2d;
}

.auth-modern .form-control {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 36, 0.1);
    padding: 0.9rem 1rem;
    padding-right: 3rem;
}

.auth-modern .form-group {
    position: relative;
}

.auth-modern .input-icon,
.auth-modern .field-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #8b95a7;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1;
}

.auth-modern__card-body button.btn {
    border-radius: 16px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .auth-modern__hero {
        padding: 3.75rem 0 2.5rem;
    }

    .auth-modern__card {
        padding: 1.5rem;
    }
}

