/* login.css - SISCAEX */

body.login-body {
    background-color: #f4f7f9 !important;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 15px;
}

.form-signin {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.input-group-text {
    background-color: #f8fafc;
    border-color: #dee2e6;
    color: #64748b;
    width: 45px;
    justify-content: center;
}

.form-control {
    padding: 12px;
    font-size: 16px;
    border-color: #dee2e6;
}

.form-control:focus {
    border-color: #027498;
    box-shadow: 0 0 0 0.25rem rgba(2, 116, 152, 0.1);
}

.btn-primary {
    background-color: #027498;
    border: none;
    padding: 12px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #01526b;
    transform: translateY(-1px);
}

#flashMessage, #authMessage {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 380px;
    z-index: 1000;
}