/* Login Page Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #e5e5e5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 14px;
}
.logo {
    font-size: 50px;
    font-weight: 600;
    color: #0274be;
    margin-bottom: 25px;
    letter-spacing: -2px;
    margin-top: -40px;
}
.login-container {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; position: relative; }
.form-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fafafa;
    transition: all 0.3s;
    outline: none;
}
.form-input:focus { border-color: #999; background-color: #fff; }
.form-input::placeholder { color: #999; }
.password-container { position: relative; }
.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
}
.toggle-password:hover { color: #666; }
.eye-icon { width: 20px; height: 20px; display: block; }
.eye-icon svg { width: 100%; height: 100%; fill: currentColor; }
.btn-login {
    width: 100%;
    padding: 13px;
    background-color: #0274be;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-login:hover {
    background-color: #004275;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-login:active { transform: translateY(0); }
.wini-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 12px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.wini-badge:hover { opacity: 1; }
.wini-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
}
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.login-links {
    padding-top: 10px;
}
h3.title{
    text-align: center;
}
.loading.active { display: flex; }
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
.loading-text { margin-top: 16px; color: #666; font-size: 14px; }
@media (max-width: 480px) {
    .logo { font-size: 36px; }
    .login-container { padding: 30px 20px; }
}