/* =====================================
   AUTH PAGES
===================================== */

.auth-container {
    max-width: 500px;
    margin: 40px auto;
}

.auth-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.auth-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color:#800;
}

.auth-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color:#800;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {

    width: 100%;
    padding: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 15px;

    margin-bottom: 18px;

    box-sizing: border-box;
}

.auth-form input:focus {

    outline: none;

    border-color: #0d6efd;

    box-shadow:
    0 0 0 3px rgba(13,110,253,.15);
}

.auth-btn {

    width: 100%;

    background: #0d6efd;

    color: white;

    border: 0;

    border-radius: 8px;

    padding: 12px;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.auth-btn:hover {

    background: #0b5ed7;
}

.auth-links {

    text-align: center;

    margin-top: 20px;
}

.auth-links a {

    color: #0d6efd;

    text-decoration: none;
}

.auth-links a:hover {

    text-decoration: underline;
}

.auth-error {

    background: #ffe5e5;

    color: #c62828;

    border: 1px solid #ffbdbd;

    padding: 12px;

    margin-bottom: 20px;

    border-radius: 8px;
}

.auth-success {

    background: #e9f9ec;

    color: #2e7d32;

    border: 1px solid #bde5c2;

    padding: 12px;

    margin-bottom: 20px;

    border-radius: 8px;
}