@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');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    background-color: #F9FAFB;
}
main{
    text-align: center;
    padding: 0px 20px;
}
h1{
    font-weight: 600;
    margin: 15px 0px;
    font-size: 170%;
}
.subheading{
    font-size: 14px;
    color: #6C727F;
    margin-bottom: 40px;
}
.input{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
section{
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.03), 0px 8px 12px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    
    border-radius: 15px;
    display: flex;
}
.input > input, button, div{
    text-align: center;
    width: fit-content;
    width: 100%;
    padding: 14px;
    
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    border-radius: 15px;
}
.input > input{
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background-color: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    
}
.input > button{
    margin-top: 10px;
    background-color: #284BCE;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
}
.input > div{
    padding:0px;
    width: fit-content;
    font-size: 12px;
    margin-bottom: 0px;
    text-align: left;
    color: #6C727F;
}
.author-info {
    font-size: 14px;
    text-align: center;
    color: rgb(55, 65, 81);
}
.author-info a {
    text-decoration: none;
}

@media screen and (min-width:1024px){
    h1{
        font-size: 48px;
    }
    .subheading{
        font-size: 20px;
    }
    section{
        margin: 0px auto;
        width: 500px;
    }
    .input > div{
        font-size: 14px;
    }
    .input > button{
        font-size: 16px;
    }
    .input > input{
        font-size: 16px;
    }
}