/* ===============================
   Google Font
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ===============================
   Body
================================= */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg,#4F46E5,#06B6D4);

    overflow: hidden;
}

/* ===============================
   Container
================================= */
.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* ===============================
   Login Card
================================= */

.login-card{

    width:400px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.25);

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 40px rgba(0,0,0,.2);

    animation:fadeIn .8s ease;

}

/* ===============================
   Logo
================================= */

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo i{

    font-size:60px;

    color:white;

    margin-bottom:10px;

}

.logo h2{

    color:white;

    font-size:28px;

}

.logo p{

    color:#E5E7EB;

    font-size:14px;

}

/* ===============================
 Inputs
================================= */

.input-box{

    margin-bottom:20px;

}

.input-box label{

    display:block;

    color:white;

    margin-bottom:8px;

    font-size:14px;

}

.input-box input{

    width:100%;

    padding:14px;

    border:none;

    border-radius:12px;

    outline:none;

    font-size:15px;

}

/* Password */

.password-box{

    position:relative;

}

.password-box i{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    color:#777;

    cursor:pointer;

}

/* ===============================
 Options
================================= */

.options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;

}

.options label{

    color:white;

}

.options a{

    color:white;

    text-decoration:none;

}

.options a:hover{

    text-decoration:underline;

}

/* ===============================
 Button
================================= */

button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:12px;

    background:white;

    color:#4F46E5;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:translateY(-3px);

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

/* ===============================
 Signup
================================= */

.signup-link{

    margin-top:25px;

    text-align:center;

    color:white;

}

.signup-link a{

    color:#FFF;

    font-weight:600;

    text-decoration:none;

}

.signup-link a:hover{

    text-decoration:underline;

}

/* ===============================
 Animation
================================= */

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===============================
 Responsive
================================= */

@media(max-width:450px){

.login-card{

width:90%;

padding:30px;

}

.logo h2{

font-size:22px;

}

}