*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    margin:0;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#5B5BEA;
    font-family:'Poppins',sans-serif;
}

.card{
    width:350px;
    max-width:90%;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);

    display:flex;
    flex-direction:column;
}

.card h2{
    margin-bottom:20px;
    text-align:center;
}

.card form{
    width:100%;
}

.text-center{
    text-align:center;
    margin-top:15px;
}

h2{
    margin-bottom:20px;
    color:#333;
}

input{
    width:100%;
    padding:12px 15px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

input:focus{
    border-color:#5B5BEA;
}

button{
    width:100%;
    padding:14px;
    background:#5B5BEA;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

button:hover{
    opacity:.9;
}

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

a{
    text-decoration:none;
    color:#5B5BEA;
}