/**
 * Login Page Override: MiEscritorio.NET
 * Overrides login.css with MiEscritorio branding
 */

/* Background gradient */
#loginBody {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 50%, #16213e 100%) !important;
}

/* Login box styling */
#loginBox {
    border-radius: 16px;
}

/* Logo sizing */
#logo img {
    max-height: 60px !important;
    width: auto !important;
}

/* Submit button - cyan accent */
#loginBox .submit.button {
    background: #00b4d8 !important;
    border-color: #00b4d8 !important;
    border-radius: 8px !important;
}
#loginBox .submit.button:hover {
    background: #0096b7 !important;
    border-color: #0096b7 !important;
}

/* Input fields */
#loginBox input[type="text"],
#loginBox input[type="password"] {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
}
#loginBox input[type="text"]:focus,
#loginBox input[type="password"]:focus {
    border-color: #00b4d8 !important;
    box-shadow: 0 0 0 3px rgba(0,180,216,0.15) !important;
}

/* Company copyright */
#company .content {
    color: rgba(255,255,255,0.6) !important;
}

/* Hide poweredBy */
#poweredBy {
    display: none !important;
}
