body {
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #0f3057, #00587a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.glass-input {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: #fff !important;
}

.glass-input:focus {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    box-shadow: none !important;
}

label {
    font-size: 14px;
}

.btn-brand {
    background: #00a8cc;
    border: none;
    font-weight: 600;
    color: #fff;
}

.btn-brand:hover {
    background: #0097b2;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #fff;
}

