*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
   /* background:linear-gradient(135deg,#667eea,#764ba2);*/
     background:linear-gradient(135deg,#000e27,#10c4a8);
}

.container{
    background:white;
    padding:40px;
    width:350px;
    border-radius:16px;
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
    text-align:center;
    animation:fadeIn 0.8s ease;
}

.container h1{
    margin-bottom:10px;
    font-weight:600;
}

.subtitle{
    color:#777;
    font-size:14px;
    margin-bottom:25px;
}

.input-group{
    margin-bottom:18px;
    text-align:left;
}

.input-group label{
    font-size:13px;
    color:#555;
}

.input-group input{
    width:100%;
    padding:12px;
    margin-top:5px;
    border-radius:8px;
    border:1px solid #ddd;
    outline:none;
    transition:0.3s;
}

.input-group input:focus{
    border-color:#667eea;
    box-shadow:0 0 0 2px rgba(102,126,234,0.2);
}

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
   /* background:linear-gradient(135deg,#667eea,#764ba2);*/
    background:linear-gradient(135deg,#000e27,#10c4a8);
    color:white;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

.extra{
    margin-top:18px;
    font-size:13px;
}

.extra a{
    color:#667eea;
    text-decoration:none;
    font-weight:500;
}

.extra a:hover{
    text-decoration:underline;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}