body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #b6b6b6 url('/assets/images/login_background.jpeg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: min(1180px, 95vw);
    padding: 40px 20px;
    gap: 28px;
}

.auth-hero {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
}

.auth-welcome {
    font-size: 44px;
    font-weight: 800;
    color: #d2a44c;
    line-height: 1;
    margin-bottom: 22px;
}

.auth-subtitle {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 26px;
}

.auth-copy {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: none;
}

.auth-panel {
    background: rgba(132,132,132,0.9);
    border-radius: 8px;
    padding: 36px 32px 32px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    backdrop-filter: blur(3px);
    min-width: 340px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 22px;
}

.auth-logo-img {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

.auth-logo-text {
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}

.auth-form .form-control {
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: #3b3b3b;
}

.auth-form .form-control:focus {
    background: #fff;
    border-color: #d2a44c;
    box-shadow: 0 0 0 2px rgba(210,164,76,0.2);
    color: #2c2c2c;
}

.auth-password-group .input-group-text {
    background: transparent;
    border: 1px solid #e2e2e2;
    border-left: none;
    border-radius: 0 12px 12px 0;
    color: #555;
    cursor: pointer;
}

.auth-password-group .form-control {
    border-right: none;
    border-radius: 12px 0 0 12px;
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.auth-remember input {
    width: 18px;
    height: 18px;
    accent-color: #d2a44c;
    margin: 0;
}

.auth-submit {
    min-width: 120px;
    background: linear-gradient(90deg, #d2a44c 0%, #e6be6d 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(210,164,76,0.35);
}

.auth-submit:hover {
    background: linear-gradient(90deg, #c0903b 0%, #d2a44c 100%);
}

.auth-alert {
    background: rgba(220,79,79,0.12);
    border: 1px solid rgba(220,79,79,0.4);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .auth-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .auth-hero {
        order: 2;
    }
    .auth-panel {
        order: 1;
        margin: 0 auto;
    }
    .auth-actions {
        flex-direction: column;
    }
    .auth-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .auth-panel {
        padding: 28px 22px;
        min-width: 0;
    }
    .auth-welcome {
        font-size: 34px;
    }
    .auth-subtitle {
        font-size: 22px;
    }
    .auth-copy {
        font-size: 18px;
    }
}
