﻿/* =========================
   VARIABLES(auth.csssfile for both sinout and login)
========================= */
:root {
    /* Fonts */
    --font-primary: Arial, sans-serif;
    --font-secondary: 'Segoe UI', Arial, sans-serif;
    /* Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-muted: #cccccc;
    --color-border-light: #eeeeee;
    --color-blue: #0088cc;
    --color-orange: #f39c12;
    --color-orange-bg: #f7941d;
    --color-orange-table: #f39200;
    --color-footer-bg: #002133;
    --color-footer-border: rgba(255, 255, 255, 0.1);
    /* Spacing */
    --space-0: 0;
    --space-4: 4px;
    --space-5: 5px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-15: 15px;
    --space-20: 20px;
    --space-30: 30px;
    /* Font Sizes */
    --font-10: 10px;
    --font-12: 12px;
    --font-13: 13px;
    --font-14: 14px;
    --font-16: 16px;
    --font-18: 18px;
    --font-22: 22px;
    --font-24: 24px;
    /* Radius */
    --radius-4: 4px;
    /* Other */
    --logo-height: 50px;
    --btn-height: 45px; /* consistent with nav height */
    --scroll-up-size: 18px;
}


/* =========================
   AUTH PAGE ONLY
========================= */

.auth-page {
    padding: 40px 15px;
}

    /* Form Card */
    .auth-page form {
        background-color: #fff;
        padding: 30px 25px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Heading */
    .auth-page h2 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
    }

    /* Labels */
    .auth-page label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    /* Inputs */
    .auth-page input.form-control {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 14px;
        height: 42px;
    }

    /* Password Group */
    .auth-page .input-group {
        display: flex;
        width: 100%;
    }

        .auth-page .input-group input {
            flex: 1;
            border-right: none;
            border-radius: 4px 0 0 4px;
        }

        .auth-page .input-group .input-group-text {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            border: 1px solid #ced4da;
            border-left: none;
            border-radius: 0 4px 4px 0;
            background-color: #e9ecef;
            cursor: pointer;
            height: 42px;
        }

    /* Button */
    .auth-page button.btn {
        background-color: #0d6efd;
        border: none;
        color: white;
        padding: 12px;
        font-size: 16px;
        border-radius: 4px;
        width: 100%;
        transition: background-color 0.3s ease;
    }

        .auth-page button.btn:hover {
            background-color: #0b5ed7;
        }

    /* Bottom text */
    .auth-page .text-center {
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
    }

        .auth-page .text-center a {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 500;
        }

            .auth-page .text-center a:hover {
                text-decoration: underline;
            }

    /* Validation */
    .auth-page .text-danger {
        font-size: 13px;
    }

/* Responsive */
@media (max-width: 768px) {
    .auth-page form {
        padding: 20px;
    }
}
