@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
}
* {
    text-decoration: none;
    box-sizing: border-box;
}

.auth-form {
    width: 350px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 1px 1px 10px -2px rgb(181, 195, 214);
    margin: auto;
    margin-top: 200px;
}
.header span {
    display:block;
    width:100%;
    padding-top:20px;
    text-align:center;
    font-size: 22px;
    font-weight: 600;
    color: rgb(22, 32, 90);
}
.form {
    padding: 20px;
}
input {
    font-family: "Poppins", sans-serif;
}
input[type='text'] {
    display:block;
    width:100%;
    line-height: 40px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(22, 32, 90);
    border:none;
    outline:none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    margin-top: 20px;
}
input[type='submit'] {
    margin-top: 25px;
    display:block;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    background: rgb(22, 32, 90);
    color: #fff;
    box-shadow: none;
    border:none;
    border: 3px solid rgb(22, 32, 90);
    transition: 300ms;
    border-radius: 10px;
    line-height: 40px;
    cursor: pointer;
}
input[type='submit']:hover {
    color: rgb(22, 32, 90);
    background: #fff;
}