/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',system-ui,sans-serif;
    background:#3D7484;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 15px 20px;
}

/* LOGIN CARD */
.login-card{
    width:100%;
    max-width:380px;
    padding:30px 25px;
    border-radius:20px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.15);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
    text-align:center;
    animation:fadeUp .6s ease;
}

@keyframes fadeUp{
    from{
        transform:translateY(20px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

/* TITLE */
.login-title{
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
    line-height:1.4;
}

/* LOGO */
.logo-box{
    display:flex;
    justify-content:center;
    margin-bottom:15px;
}

.logo-box img{
    width:100px;
    height:100px;
    object-fit:contain;
    filter:drop-shadow(0 0 10px rgba(0,150,255,.7));
    transition:.3s;
}

.logo-box img:hover{
    transform:scale(1.05);
}

/* INPUT */
.input-group{
    position:relative;
    margin-bottom:18px;
}

input{
  width:100%;
  padding:14px 45px 14px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.12);
  color:#fff;
  outline:none;
  transition:0.25s;
  margin-bottom:0;
}

.input-group label{
    position:absolute;
    left:15px;
    top:15px;
    color:rgba(255,255,255,.7);
    pointer-events:none;
    transition:0.25s ease;
    font-size:15px;
    line-height:1;
}
.input-group input:focus,
.input-group input:not(:placeholder-shown){
    border-color:#00eaff;
    box-shadow:0 0 10px rgba(0,234,255,.3);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label{
    top:-8px;
    left:10px;
    font-size:11px;
    background:#2c5364;
    padding:2px 6px;
    border-radius:5px;
}



/* PASSWORD ICON */
.toggle-pass{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#fff;
    font-size:15px;
}

/* BUTTON */
.login-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#00c6ff;
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

/* LINKS */
.login-links{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    gap:10px;
}

.login-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.login-links a:hover{
    text-decoration:underline;
}

/* DOWNLOAD BUTTON */
.download-section{
    margin-top:20px;
}

.download-btn{
    display:inline-block;
    background:linear-gradient(45deg,#00c853,#69f0ae);
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.download-btn:hover{
    transform:scale(1.05);
}

/* FOOTER */
.footer-text{
    margin-top:15px;
    font-size:12px;
    color:#ddd;
}

/* MOBILE */
@media(max-width:768px){

    body{
        padding:90px 12px 20px;
        align-items:flex-start;
    }

    .login-card{
        max-width:100%;
        margin:0 auto;
        padding:25px 20px;
    }

    .login-title{
        font-size:22px;
    }

    .logo-box img{
        width:85px;
        height:85px;
    }

    .login-links{
        flex-direction:column;
        align-items:center;
    }

    .download-btn{
        width:100%;
        text-align:center;
    }
}

/* EXTRA SMALL MOBILE */
@media(max-width:480px){

    body{
        padding:85px 10px 20px;
    }

    .login-card{
        padding:20px 15px;
        border-radius:18px;
    }

    .login-title{
        font-size:18px;
    }

    .logo-box img{
        width:75px;
        height:75px;
    }

    .input-group input{
        font-size:16px;
    }

    .login-links a{
        font-size:15px;
    }
}








