body {
    background-color: #e7e8eb;
}

#logo {
    width: 30%;
    text-align: center;
    border: 1px solid transparent;
    font-size: 15px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0%;

}

#logo>img {
    width: 30px;
    height: 25px;
    margin-right: 20px;
}

#logo>h1>a {
    color: black;
    text-decoration: none;
}

#container {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    width: 40%;
    padding: 30px;
    margin: auto;
    margin-top: 0px;
    border-radius: 10px;
}

#container>h1 {
    text-align: center;
    font-size: 25px;
    margin-top: 0px;
}
#container>#box{
    display: flex;
    justify-content: center;
    align-items: center;
}
#container>#box>.fb,.google{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0px 20px 20px 20px;
    padding: 0px 20px;
    border: 2px solid teal;
    border-radius: 5px;
    width: 50%;
}
#container>#box>.fb{
    background-color: #4267b2;
    border: 2px solid #4267b2;
    border-radius: 5px;
    color: white;
}
#container>#box img{
    width: 20px;
    height: 18px;
    margin-right: 10px;
}
#container>p{
    text-align: center;
    color: grey;
    margin: 0px ;
}
#container>#form{
    display: flex;
    flex-direction: column;
    line-height: 30px;
}
#container>#form>label,input{
    font-size: 15px;
}
#container>#form>label{
    font-weight: bold;
}
#container>#form>input{
    padding: 10px 0px;
}
#container>#form>p{
    margin: 0px;
    color: grey;
}
#container>#form>button{
    padding: 10px 0px;
    background-color: blue;
    color: white;
    border: 1px solid transparent;
    margin-bottom: 10px;
}
p{
    text-align: center;
}