﻿/* -----------------------------------------
   Auth Pages (Login / Register)
------------------------------------------- */

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(135deg, #0A4D8C 15%, #00B4B4 100%);
    padding: 1rem;
    padding-top: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 500px;
}

.auth-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.auth-title {
    color: #0A4D8C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
}

.form-control {
    width: 80%;
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        border-color: #0A4D8C;
        box-shadow: 0 0 4px rgba(10, 77, 140, 0.3);
    }

.form-remember {
    text-align: left;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary {
    background-color: #00B4B4;
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #FF6B35;
    }

.extra-links {
    margin-top: 1rem;
}

    .extra-links a {
        color: #00B4B4;
        text-decoration: none;
    }

        .extra-links a:hover {
            text-decoration: underline;
        }

.auth-footer {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

    .auth-footer a {
        color: #0A4D8C;
        font-weight: 600;
    }

        .auth-footer a:hover {
            color: #FF6B35;
        }

.text-danger {
    font-size: 0.9rem;
    color: #C0392B;
}

/* -----------------------------------------
   Forgot Password Page Styling
------------------------------------------- */

.auth-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #00B4B4;
    color: #00B4B4;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline:hover {
        background-color: #00B4B4;
        color: #fff;
    }

.text-muted {
    color: #777 !important;
}

/* Small animation for smooth entry */
.auth-card {
    animation: fadeIn 0.8s ease-in-out;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
