

body {
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    max-width: 960px;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    background: #fff;
}

.auth-left {
    background: linear-gradient(160deg, #1638a7, #a7b8dc);
    color: #fff;
    padding: 60px 45px;
}

    .auth-left h2 {
        font-weight: 700;
    }

    .auth-left p {
        opacity: .9;
    }

.auth-right {
    padding: 60px 50px;
}

.brand {
    font-size: 30px;
    font-weight: 800;
    color: #1E40AF;
}

    .brand span {
        color: #F59E0B;
    }

.btn-primary {
    background: #1E40AF;
    border: none;
    height: 46px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #1E3A8A;
    }

.form-control {
    height: 46px;
}

.password-toggle {
    cursor: pointer !important;
    pointer-events: auto;
}