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

body{

    background:linear-gradient(135deg,#08101f,#0f172a);

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.login-card{

    width:420px;

    background:#1e293b;

    padding:45px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.logo{

    width:110px;

    margin-bottom:15px;

}

h1{

    color:white;

    letter-spacing:2px;

}

.subtitle{

    color:#F97316;

    margin-top:8px;

    margin-bottom:30px;

}

h2{

    color:white;

    margin-bottom:30px;

}

.input-box{

    display:flex;

    align-items:center;

    background:#0f172a;

    border-radius:10px;

    padding:15px;

    margin-bottom:18px;

}

.input-box i{

    color:#F97316;

    width:25px;

}

.input-box input{

    width:100%;

    background:none;

    border:none;

    outline:none;

    color:white;

    font-size:16px;

}

.input-box input::placeholder{

    color:#94a3b8;

}

button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#F97316;

    color:white;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

    margin-top:10px;

}

button:hover{

    background:#ea580c;

    transform:translateY(-3px);

}

.copyright{

    color:#94a3b8;

    margin-top:30px;

    font-size:13px;

}

@media(max-width:480px){

    .login-card{

        width:92%;

        padding:30px;

    }

}