﻿
:root {
    --auth-blue: #0a5c96;
    --auth-blue-hover: #08507f;
    --auth-heading: #0d5f9e;
    --auth-gold: #c99a2e;
    --auth-input-bg: #eaeef3;
    --auth-navy: #0a1330;
}

.auth-page {
    display: flex;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    background: #fff;
}

.auth-art {
    position: relative;
    flex: 1 1 55%;
    overflow: hidden;
    background: var(--auth-navy);
    background-image: url('/img/login-waves.png');
    background-size: cover;
    background-position: center;
}

.auth-panel {
    flex: 1 1 45%;
    max-width: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}

.auth-card {
    width: 100%;
    max-width: 360px;
}

.auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.auth-logo {
    height: 60px;
    width: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--auth-heading);
    margin: 0 0 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.auth-card .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 7px;
}

.auth-control.form-control {
    height: 46px;
    border: 1px solid transparent;
    border-radius: 24px;
    background: var(--auth-input-bg);
    padding: 0 18px;
    font-size: 14px;
    color: #1a1a1a;
    box-shadow: none;
}

.auth-control.form-control::placeholder {
    color: #9aa5b3;
}

.auth-control.form-control:focus {
    background: #fff;
    border-color: var(--auth-blue);
    box-shadow: 0 0 0 3px rgba(10, 92, 150, 0.12);
}

.position-relative .auth-control {
    padding-right: 46px;
}

.password-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: var(--auth-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.auth-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--auth-gold);
    text-decoration: none;
}

.auth-link:hover {
    color: #a87d1c;
    text-decoration: underline;
}

.form-check-label {
    font-size: 13px;
    color: #6b7280;
}

.form-check-input:checked {
    background-color: var(--auth-blue);
    border-color: var(--auth-blue);
}

.auth-submit.btn-primary {
    height: 48px;
    border: none;
    border-radius: 24px;
    background: var(--auth-blue);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(10, 92, 150, 0.28);
}

.auth-submit.btn-primary:hover,
.auth-submit.btn-primary:focus {
    background: var(--auth-blue-hover);
    box-shadow: 0 8px 20px rgba(10, 92, 150, 0.35);
}

.auth-meta {
    text-align: center;
    font-size: 12px;
    color: #9aa5b3;
    margin-top: 22px;
}

@media (max-width: 860px) {
    .auth-art {
        display: none;
    }

    .auth-panel {
        flex: 1 1 100%;
        max-width: none;
    }
}
