/*******************************************************************************
// File Name: login.css
// Purpose  : CSS for login
//*****************************************************************************/

/* ================================
   LOGIN PAGE STYLES
   ================================ */

body.login-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Login Card */
.login-box {
    background: #ffffff;
    width: 380px;
    padding: 28px 26px;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* Heading */
.login-box h4 {
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
}

/* Outline fields spacing */
.login-box .outline-field {
    margin-bottom: 14px;
}

/* Inputs */
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    height: 42px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* Remember me */
.login-box .form-check {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.login-box .form-check-input {
    margin-top: 0;
    cursor: pointer;
}

.login-box .form-check-label {
    font-size: 0.9rem;
    cursor: pointer;
}

/* Login button */
.login-box .btn {
    height: 44px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Error message */
.login-box .text-danger {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 420px) {
    .login-box {
        width: 92%;
        padding: 22px;
    }
}