.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0c447c 0%, #185fa5 100%);
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: 380px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-icon {
    width: 56px;
    height: 56px;
    background: #e6f1fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #185fa5;
    font-size: 24px;
    overflow: hidden;
}

.login-logo-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 11px;
    display: block;
    flex-shrink: 0;
}

.login-logo-fallback {
    display: none;
}

.login-header h3 {
    margin: 0 0 4px;
    color: #042c53;
    font-weight: 600;
}

.login-header p {
    color: #5f5e5a;
    font-size: 13px;
    margin: 0;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #1a5fa8;
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #c7d9ef;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background: #f0f6ff;
    color: #1e3a5f;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.form-control:focus {
    outline: none;
    border-color: #185fa5;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(24,95,165,0.12);
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #185fa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
}

.btn-login:hover {
    background: #0c447c;
}

.btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert-error {
    background: #fcebeb;
    color: #791f1f;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
}

.validation-message {
    color: #e24b4a;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}