/* Estilos para la página de login del panel de administración */
.ea-login-page {
    background: #f7f7f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    padding: 32px;
    max-width: 420px;
    width: 100%;
}

.ea-login-logo {
    text-align: center;
    margin-bottom: 24px;
}
.ea-login-logo img {
    max-width: 220px;
    height: auto;
}

.ea-login-title {
    color: #a56e52;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.ea-login-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.ea-login-form .form-group {
    margin-bottom: 16px;
}

.ea-login-form .form-control {
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out;
}

.ea-login-form .form-control:focus {
    outline: none;
    border-color: #a56e52;
    box-shadow: 0 0 0 2px rgba(165, 110, 82, 0.1);
}

.ea-login-form .btn-login {
    background-color: #a56e52;
    border-color: #a56e52;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    width: 100%;
    border: none;
    font-size: 16px;
    transition: background-color 0.15s ease-in-out;
}

.ea-login-form .btn-login:hover {
    background-color: #924d38;
    border-color: #924d38;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}

.alert {
    margin-bottom: 16px;
}