﻿
.auth-shell {
    min-height: calc(100vh - 140px);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.auth-card {
    width: min(1040px, 100%);
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.12);
    overflow: hidden;
}

.auth-grid {
    display: grid;
    grid-template-columns: 40% 60%;
}

.auth-left {
    padding: 2rem;
    color: #fff;
    background: linear-gradient(165deg, rgba(16, 24, 40, 0.9) 0%, rgba(21, 38, 57, 0.86) 100%), url("https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?auto=format&fit=crop&w=1100&q=80") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

    .auth-brand img {
        width: 168px;
        height: auto;
        border-radius: 10px;
    }

.auth-copy h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.auth-copy p {
    color: #d0d5dd;
    margin-bottom: 0;
}

.auth-points {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: #eaecf0;
}

    .auth-points li {
        margin-bottom: 0.35rem;
    }

.auth-right {
    padding: 2rem;
}

.auth-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 0.25rem;
}

.auth-sub {
    color: #667085;
    margin-bottom: 1.2rem;
}

.field-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: #344054;
}

.field-control {
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    padding: 0.72rem 0.9rem;
}

    .field-control:focus {
        border-color: #f59e0b;
        box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.2);
    }

.password-wrap {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #667085;
    padding: 0.25rem;
}

.hint {
    font-size: 0.8rem;
    color: #667085;
    margin-top: 0.3rem;
}

.btn-auth {
    border-radius: 12px;
    padding: 0.82rem 1rem;
    font-weight: 700;
    border: none;
    width: 100%;
}

.btn-primary-auth {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    color: #111827;
}

    .btn-primary-auth:hover {
        background: linear-gradient(90deg, #fcd34d 0%, #f59e0b 100%);
        color: #111827;
    }

.auth-footer {
    text-align: center;
    margin-top: 1rem;
    color: #667085;
}

@media (max-width: 992px) {
    .auth-grid {
        grid-template-columns: 1fr;
    }

    .auth-left {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .auth-shell {
        min-height: auto;
        padding: 0.35rem;
    }

    .auth-card {
        border-radius: 14px;
    }

    .auth-left {
        padding: 1rem 0.9rem;
        min-height: 185px;
    }

    .auth-copy h2 {
        font-size: 1.3rem;
        margin-bottom: 0.45rem;
    }

    .auth-copy p,
    .auth-points {
        font-size: 0.86rem;
    }

    .auth-points {
        margin-top: 0.7rem;
    }

    .auth-right {
        padding: 1rem 0.9rem;
    }

    .auth-title {
        font-size: 1.35rem;
    }

    .auth-sub {
        font-size: 0.86rem;
        margin-bottom: 0.85rem;
    }

    .btn-auth {
        padding: 0.72rem 0.9rem;
        font-size: 0.92rem;
    }
}


