.auth-page {
    min-height: calc(100vh - 90px);
    background: linear-gradient(135deg, #fff7f1 0%, #f5f7fb 50%, #ffffff 100%);
    padding: 70px 20px;
}

.auth-wrapper {
    max-width: 1120px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.auth-info {
    padding: 60px 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8a2a);
    color: #ffffff;
    position: relative;
}

.auth-info::after {
    content: "🚘";
    position: absolute;
    right: 35px;
    bottom: 25px;
    font-size: 95px;
    opacity: 0.18;
}

.auth-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 9px 16px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.auth-info h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.auth-info p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.auth-points {
    margin-top: 35px;
    display: grid;
    gap: 15px;
}

.auth-points div {
    background: rgba(255,255,255,0.16);
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.auth-form-card {
    padding: 55px 50px;
}

.auth-form-card h2 {
    text-align: center;
    font-size: 34px;
    color: #081a33;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.auth-form .form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #d9e1ec;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
    transition: 0.25s;
    background: #f8fafc;
}

.auth-form textarea.form-control {
    height: 90px;
    padding-top: 14px;
    resize: vertical;
}

.auth-form .form-control:focus {
    border-color: #ff6b00;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.password-box {
    position: relative;
}

.password-box .form-control {
    padding-right: 70px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #ff6b00;
    font-weight: 700;
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #ff6b00, #ff7a18);
    color: #ffffff;
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 12px 25px rgba(255, 107, 0, 0.25);
    transition: 0.25s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(255, 107, 0, 0.32);
}

.auth-link {
    text-align: center;
    margin-top: 22px;
    color: #64748b;
}

.auth-link a {
    color: #ff6b00;
    font-weight: 800;
    text-decoration: none;
}

.alert,
.flash-message {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 12px;
    font-weight: 700;
}

.alert-danger,
.flash-danger {
    background: #fee2e2;
    color: #991b1b;
}

.alert-success,
.flash-success {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 900px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-info,
    .auth-form-card {
        padding: 40px 28px;
    }

    .auth-info h1 {
        font-size: 32px;
    }
}

@media (max-width: 520px) {
    .auth-page {
        padding: 35px 14px;
    }

    .auth-wrapper {
        border-radius: 20px;
    }

    .auth-info {
        padding: 35px 22px;
    }

    .auth-form-card {
        padding: 35px 22px;
    }

    .auth-form-card h2 {
        font-size: 28px;
    }

    .auth-info h1 {
        font-size: 28px;
    }
}