body{
    box-sizing: border-box;
    padding: 0;
    background: linear-gradient(114deg, rgb(0, 162, 255), lightblue);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
body div{
    height: 40%;
    /* margin: 50px; */
    border-radius: 10px;
    width: 50%;
    display: flex;
    align-items: center;
    /* flex-direction: row; */
    justify-content: space-around;  
    box-shadow: 1px 1px 20px 3px rgba(0, 0, 0, 0.3);
    background: linear-gradient(224deg, white, rgb(223, 223, 223));
}

body div h2{
    text-align: left;
}
body div form{
    display: flex;
    align-items: center;
    flex-direction: column;
}
body div form input{
    outline: grey;
    border-radius: 5px;
    padding: 10px;
    /* width: 200px; */
    margin: 10px;
    background: white;
    border: 1px solid grey;
}
body div button{
    cursor: cell;
    outline: none;
    padding: 10px;
    font-weight: bolder;
    border-radius: 5px;
    height: 50px;
    transition: all 0.5s;
    width: 200px;
    color: white;
    border: 0;
    font-size: 17px;
    width: 100%;
    background: rgb(0, 162, 255);
}
body div button:hover{
    background: rgb(0, 110, 173);
}
article {
    border: 2px solid red;
    background: rgb(255, 199, 199);
    color: red;
    padding: 10px;
    width: 40%;
    border-radius: 5px;
}
@media only screen and (max-width: 600px) {
    body div{
        height: fit-content;
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        /* margin-right: 50px; */
        border-radius: 10px;
        width: 80%;
        box-shadow: 1px 1px 20px 3px rgba(0, 0, 0, 0.3);
        align-items: center;
        background: linear-gradient(224deg, white, rgb(223, 223, 223));
        flex-direction: column;
    }
    body div form input, body div form button{
        width: 100%;
    }
}