/* Inputs existentes */
#login input[type="text"],
#login input[type="password"] {
    width: 120%;
    margin-left: -10%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Focus elegante */
#login input[type="text"]:focus,
#login input[type="password"]:focus {
    outline: none;
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0,200,83,0.2);
}

/* Botón existente */
/* Botón corregido */
#login .submit {
    width: 120%;
    margin-left: -10%;
    
    padding: 16px 14px;   /* 🔥 más alto */
    
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #007a33, #00c853);
    
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0px;
    float: none !important;
    display: flex;                 /* 🔥 centra perfecto */
    align-items: center;           /* 🔥 centrado vertical */
    justify-content: center;       /* 🔥 centrado horizontal */
    
    cursor: pointer;
    transition: all 0.3s ease;

    /* Efecto hover permanente */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* Hover más profesional */
#login .submit:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

/* Enlace Olvidé mi contraseña */
#reset-link {
    display: block;
    text-align: center;
    margin: 5px 0 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #007a33;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover elegante */
#reset-link:hover {
    color: #004d2b;
    text-decoration: underline;
}

/* Mensaje Autenticación Requerida */
#login-message {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #222;
    margin-bottom: 25px;
    position: relative;
}

#login-message::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #007a33;
    margin: 8px auto 0 auto;
}

#loginBox {
    padding: 10px 15px !important;
}

#loginBox #blur {
    display: none !important;
}

/* Boton de Microsoft*/
a.btn-microsoft-espam {
    display: flex;       
    align-items: center;          
    justify-content: center;  
    padding: 6px 20px !important;
    margin-top: 0px;  
    background: #fff; 
    color: #000 !important; 
    text-decoration: none !important;
    font-weight: 400;
    font-size: 15px;
}

/* Hover elegante */
a.btn-microsoft-espam:hover {
    background: #fff !important;  
    color: #000 !important;       
    border-color: #0078d7;
    box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.35);
}
