/* web/css/login.css */

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0091FF 0%, #0066CC 100%);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 145, 255, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.login-logo {
    text-align: center;
    margin-bottom: 20px;
}

/* Estilos para el círculo del logo - Color #8ccbfc */
.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #8ccbfc;  /* 🔥 Nuevo color */
    box-shadow: 0 10px 30px rgba(140, 203, 252, 0.4);
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: transparent !important;
    /* Sin mix-blend-mode para que no se mezcle con el círculo */
}

/* Efecto hover para el logo */
.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(140, 203, 252, 0.5);
}

.login-subtitle {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.login-card .form-control {
    border-radius: 10px;
    padding: 12px 16px;
    border: 2px solid #e8ecf1;
    font-size: 14px;
}

.login-card .form-control:focus {
    border-color: #0091FF;
    box-shadow: 0 0 0 4px rgba(0, 145, 255, 0.1);
}

.login-card .form-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    margin-bottom: 5px;
}

.btn-login {
    background: linear-gradient(135deg, #8eceff ) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 14px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100% !important;
    color: #ffffff !important;
    margin-top: 10px !important;
    transition: all 0.3s !important;
}

.btn-login:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 145, 255, 0.4) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0091FF 0%, #0066CC 100%) !important;
}

.btn-login:focus,
.btn-login:active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0091FF 0%, #0066CC 100%) !important;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf1;
}

.login-footer a {
    color: #0091FF;
    text-decoration: none;
    font-size: 13px;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-bottom {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    font-size: 12px;
}

.login-bottom a {
    color: #0091FF;
    text-decoration: none;
    font-size: 12px;
}

.login-bottom a:hover {
    text-decoration: underline;
}

.login-card .field-loginform-rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.login-card .field-loginform-rememberme label {
    margin: 0;
    font-weight: 400;
    color: #666;
    font-size: 14px;
}

.login-card .field-loginform-rememberme input {
    width: 18px;
    height: 18px;
    accent-color: #0091FF;
    cursor: pointer;
}

.forgot-password {
    float: right;
    color: #0091FF;
    text-decoration: none;
    font-size: 13px;
    margin-top: 15px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.alert-custom {
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.help-block {
    font-size: 13px;
    margin-top: 5px;
}