:root {
    --primary-blue: #00A9CE;
    --glass-bg: rgba(255, 255, 255, 0.88);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f7fa 0%, #fce4ec 50%, #e1bee7 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 30px 40px;
    width: 380px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.7);
    text-align: center;
}

.header-logos {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-allop { width: 130px; height: auto; }
.logo-kidstok { width: 100px; height: auto; }

.subtitle {
    font-size: 0.75rem;
    color: #888;
    margin-top: 5px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i:not(.toggle-password) {
    position: absolute;
    left: 15px;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px 45px 12px 40px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.9rem;
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #aaa;
    font-size: 0.9rem;
}

.btn-login {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #008eb0;
    box-shadow: 0 5px 15px rgba(0, 169, 206, 0.3);
}

.card-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.status-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.65rem;
    color: #999;
}

.whatsapp-icon { color: #25D366; font-size: 1.2rem; }
.copyright { font-size: 0.65rem; color: #bbb; }