/*public/css/index.css*/

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #254cbf; /* Azul corporativo */
}

.login-container {
    background: #f8f9fa; /* gris muy suave */
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(37, 76, 191, 0.15); /* sombra azul suave */
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 25px;
}

h1 {
    font-weight: 600;
    margin-bottom: 30px;
    color: #254cbf; /* azul */
}

label {
    font-weight: 600;
    color: #4a4a4a; /* gris oscuro para contraste */
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    box-shadow: none;
    border: 1.5px solid #ced4da; /* gris claro */
    transition: border-color 0.3s ease;
    color: #254cbf; /* texto azul */
    background-color: #fff;
}

.form-control::placeholder {
    color: #9ca3af; /* gris para placeholder */
}

.form-control:focus {
    border-color: #254cbf;
    box-shadow: 0 0 8px rgba(37, 76, 191, 0.3);
    outline: none;
    color: #254cbf;
    background-color: #fff;
}

.btn-primary {
    background-color: #254cbf;
    border: none;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 76, 191, 0.3);
}

.btn-primary:hover {
    background-color: #1f3a99;
    box-shadow: 0 6px 14px rgba(31, 58, 153, 0.5);
}

footer {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280; /* gris mediano */
}