﻿/*====================== Log In Page ========================*/
/*======== STAND ALONE PAGE!! NOT IN MAINLAYOUT =============*/

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-y: hidden;
}

.page {
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   TOAST MESSAGES 
   ========================================================================== */
/* Error Messages */
.custom-toast-container {
    z-index: 1055;
}

.toast-custom-text {
    color: white;
    font-weight: 500;
    font-size: 1rem; 
}

/* ==========================================================================
   LEFT SIDEBAR
   ========================================================================== */
.sidebar {
    background-color: #ffffff;
    padding: 2.5rem;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #dee2e6;
}

.login-image {
    width: 150px;
    margin-top: 2px;
    margin-right: auto;
    margin-left: auto;
}

.login-header-title {
    font-weight: 700;
    color: #212529;
}

.sidebar p,
.sidebar .disclaimer p,
.sidebar .support p {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: #333;
}

.sidebar .disclaimer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.sidebar .warning {
    margin-top: 1.5rem !important;
}

.alert-danger.warning {
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
    font-weight: 600;
}

/* General Support Box Styling */
.support {
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
}

/* ==========================================================================
   MAIN CONTENT & LOGIN CARD
   ========================================================================== */
.main-content {
    background-color: #e9fbfd;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

.sign-in {
    font-weight: 700;
    color: #376984;
}

/* Form Elements */
.login-label {
    font-weight: 700;
    color: #212529;
}

.login-text-muted {
    color: #6c757d;
}

.login-link {
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: none;
}

    .login-link:hover {
        color: #495057;
        text-decoration: underline;
    }

/* Custom Login Button */
.btn-login {
    background-color: #1a4b6b;
    border: none;
    color: #ffffff;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

    .btn-login:hover {
        background-color: #12364d;
        color: #ffffff;
    }
