* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Noto Sans Georgian', system-ui, sans-serif;
    background: linear-gradient(135deg, #182680 0%, #b41418 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login-wrapper { width: 100%; max-width: 420px; }
.login-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.login-logo { text-align: center; margin-bottom: 32px; }
.logo-icon { font-size: 48px; margin-bottom: 12px; }
.login-logo h1 { font-size: 22px; color: #2c2c54; margin-bottom: 4px; }
.login-logo p { color: #888; font-size: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e1e1e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all .2s;
}
.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}
.btn-login {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #182680 0%, #b41418 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    margin-top: 8px;
    transition: transform .15s, box-shadow .2s;
}
.btn-login:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.35);
}
.btn-login:disabled { opacity: .6; cursor: not-allowed; }
.error-message {
    color: #d33;
    font-size: 13px;
    text-align: center;
    margin: 8px 0;
    min-height: 18px;
}
.login-footer {
    text-align: center;
    margin-top: 24px;
    color: #aaa;
    font-size: 12px;
}