/* ===============================
   Global Styles
================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#4F46E5,#06B6D4);
    overflow:hidden;
}

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

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

.signup-card{

    width:430px;

    padding:35px;

    border-radius:20px;

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

    backdrop-filter:blur(18px);

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

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

    animation:fadeIn .8s ease;

}

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

.logo{

    text-align:center;

    margin-bottom:25px;

}

.logo i{

    font-size:55px;

    color:#fff;

    margin-bottom:10px;

}

.logo h2{

    color:#fff;

    font-size:28px;

}

.logo p{

    color:#E5E7EB;

    font-size:14px;

}

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

.input-box{

    margin-bottom:18px;

}

.input-box label{

    display:block;

    color:#fff;

    margin-bottom:8px;

    font-size:14px;

}

.input-box input{

    width:100%;

    padding:14px;

    border:none;

    border-radius:12px;

    outline:none;

    font-size:15px;

}

.password-box{

    position:relative;

}

.password-box i{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    color:#666;

    cursor:pointer;

}

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

button{

    width:100%;

    margin-top:10px;

    padding:15px;

    border:none;

    border-radius:12px;

    background:#fff;

    color:#4F46E5;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:translateY(-3px);

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

}

/* ===============================
   Login Link
================================= */

.login-link{

    margin-top:22px;

    text-align:center;

    color:#fff;

}

.login-link a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.login-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:480px){

.signup-card{

width:90%;

padding:25px;

}

.logo h2{

font-size:22px;

}

}