/* ================================
   LOGIN — GLASSMORPHISM STYLE
================================ */

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.login-page {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #5c6bc0, #512da8, #0f2027);
    background-size: 200% 200%;
    animation: bgMove 10s ease infinite;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CARD GLASS */
.glass-card {
    margin: 20px 0 20px 0;
    width: 380px;
    padding: 2.5rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* TEXTS */
.title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: .5rem;
}

.subtitle {
    text-align: center;
    color: #eaeaea;
    margin-bottom: 2rem;
}

/* INPUTS */
.form-group {
    margin-bottom: 1.3rem;
}

.glass-card input {
    padding: .8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.18) !important;
    color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.glass-card input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* OPTIONS */
.options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: #e0e0e0;
}

.forgot {
    color: #fff;
    text-decoration: none;
}

.forgot:hover {
    text-decoration: underline;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: .9rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(20px);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
    transition: 0.25s ease;
}

.btn:hover {
    background: rgba(255,255,255,0.35);
    box-shadow: 0 0 35px rgba(255,255,255,0.35);
}

/* DEMO */
.demo {
    margin-top: 1.8rem;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
    color: #ddd;
    font-size: .85rem;
}

/* ================================
   FATHER EYES — GLASS STYLE
================================ */
.fe-wrapper {
    position: relative;
}

.father-eyes-icon {
    position: absolute !important;
    top: 50% !important;
    right: 12px !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    width: 28px;
    height: 28px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.father-eyes-icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke: white !important;
    stroke-width: 2.2 !important;
}
