/*
 * Copyright (c) Evan Webb, Australia - WebbMTS Modular Tech Systems.
 * Proprietary software. Unauthorized distribution, tampering, reverse engineering, or unlicensed use is prohibited.
 * Use is subject to WebbMTS commercial license and EULA terms.
 */

/* =========================================
   LOGIN SCREEN SPECIFIC STYLES
   ========================================= */

#login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2c3e50 0%, #1a252f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.login-brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

#login-brand-logo {
    width: min(75%, 260px);
    max-height: 92px;
    object-fit: contain;
}

#login-brand-name {
    margin: 0;
    color: #8ecbff;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: clamp(20px, 2.2vw, 30px);
    text-align: center;
}

.login-box {
    background: #2c3e50;
    padding: 40px;
    border-radius: 16px;
    width: 380px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.login-box h2 {
    color: #3498db;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 26px;
    letter-spacing: 1px;
}

.login-box p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Input Styling */
.login-box input {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    background: #1a252f;
    border: 1px solid #455a64;
    color: white;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-box input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
}

/* Dept Selection List */
#login-dept-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* The "Back" Button formatting */
.btn-back-login {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    color: #95a5a6;
    background: transparent;
    border: 1px solid #455a64;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back-login:hover {
    color: #ecf0f1;
    border-color: #95a5a6;
    background: rgba(255, 255, 255, 0.05);
}

/* Step Transitions */
#dept-selection {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
