﻿/* auth.css (load after core.css) */

.auth-card {
    width: 100%;
    max-width:450px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.auth-card-register {
    width: 100%;
    max-width: 1050px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.auth-card__header {
    background: var(--primary-color);
    padding: 2rem 1.5rem;
    text-align: center;
}

.auth-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color-light);
}

.auth-card__subtitle {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color-light);
}

.auth-card__body {
    padding: 3rem;
}


/* ==========================================
   Auth Layout Wrapper
========================================== */

.auth-page-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ==========================================
   Responsive Adjustments (Media Queries)
========================================== */
/* mobile tweaks */
@media (max-width: 576px) {
    .auth-card__header {
        padding: 1.5rem 1rem;
    }

    .auth-card__title {
        font-size: 1.6rem;
    }

    .auth-card__body {
        padding: 1.5rem;
    }
}