:root{
    --button-height:40px;
    --button-radius:6px;
}

#title{
    margin:0;
    padding:0;
    margin-top: 50px;
}
body{
    background-color: #e7e8eb;
}
.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container{

    width: 350px;
    
    margin-top:70px;
    background-color: #FFFFFF;
    border-radius: var(--button-radius);


    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px;
    box-sizing: border-box;

    margin-bottom:20px;
}



#google_btn{
    background-color: D9D9D9;
    width:100%;
    height: var(--button-height);
    border-radius: var(--button-radius);
    background-color: white;
    border: #dbdce1 solid 2px;   
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: background-color 200ms ease;     
}

#google_btn:hover{
    cursor: pointer;
    background-color: #dbdce1;

}

#google_btn>img{
    height: 20px;
    margin-right:10px;
}

#text{
    color: #87888b;
    margin-top: 20px;
}

form{
    width: 100%;
}

.field{
    width: 100%;
    margin-top: 20px;
}

.field>label{
    font-weight: bold;
}
.field>.box{
    
    background-color: D9D9D9;
    width:100%;
    height: var(--button-height);
    border-radius: var(--button-radius);
    background-color: white;
    border: #00000040 solid 2px;
    transition: all 200ms linear;
}


#submit_btn{

    margin:0;
    padding:0;
    margin-top:40px;
    
    background-color: blue;
    color:white;

    width:100%;
    height: var(--button-height);
    border-radius: var(--button-radius);
    
    border: none;
    outline: none;
    transition: background-color 200ms ease;

}
#submit_btn:hover{
    cursor: pointer;
    
    background-color: rgb(0, 0, 211);
}


.link{
    color:blue;
    /* text-decoration:wavy underline; */
    text-decoration:none;
}
