@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&family=Tilt+Prism&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

body{
    background-color: rgb(25, 87, 141);
}
.main{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#box{
    width: 40%;
    height: 370px;
    box-shadow: 0px 0px 5px gray;
    background-color: white;
    border-radius: 5px;
    justify-content: center;
    padding: 40px 30px; 
}
.row{
    width: 100%;
    margin: 2rem;
    margin-left: 0;
}
.btn{
    width: 100%;
    padding: 5px;
    font-size: 20px;
    color: white;
    border: none;
    border-radius: 5px;
    background-color:  rgb(25, 87, 141);
}