/* Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #f0f7ff, #e6f0fa);
    color: #333;
} */

/* Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 68px - 46px);
    /* account for navbar & footer */
    padding: 2rem;
}

/* Card Box */
.auth-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.auth-logo img {
    width: 80px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #555;
    margin-bottom: 1.5rem;
}

.brand {
    color: #0073e6;
    font-weight: bold;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.2s;
}

input:focus {
    border-color: #0073e6;
    outline: none;
}

/* Button */
.btn-primary {
    background: #0073e6;
    color: white;
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #005bb5;
}

/* Bottom Switch */
.switch-auth {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.switch-auth a {
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
}

.switch-auth a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .auth-logo img{
        width: 60px;
    }
    .auth-box {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    input,
    .btn-primary {
        font-size: 0.95rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}