/*
    Login Page Styles
    Created on : Aug 5, 2026
*/

/* Full page background and centering */
body {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Abeezee', sans-serif;
    margin: 0;
    padding: 20px;
}

/* Login card container */
.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header section with logo */
.login-header {
    background-color: #0056b3;
    padding: 30px 20px;
    text-align: center;
}

.login-header img {
    height: 100px;
    margin-bottom: 10px;
}

.login-header h1 {
    font-family: cursive;
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: normal;
}

/* Form body */
.login-body {
    padding: 30px 25px;
}

.login-body .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

.login-body .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-body .form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* Submit button */
.btn-login {
    background-color: #0056b3;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s;
}

.btn-login:hover {
    background-color: #004494;
}

.btn-login:active {
    background-color: #003370;
}

/* Loading button */
#loading_btn {
    background-color: #0056b3;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
}

/* Alert messages */
.alert {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Forgot password link */
.forgot-password {
    display: inline-block;
    margin-top: 15px;
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    color: #004494;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    body {
        padding: 10px;
        align-items: flex-start;
        padding-top: 40px;
    }

    .login-body {
        padding: 20px 15px;
    }

    .login-header {
        padding: 20px 15px;
    }

    .login-header img {
        height: 80px;
    }

    .login-header h1 {
        font-size: 24px;
    }
}
