section{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

article{
    display: flex;
    flex-direction: column;
    width: 320px;
    margin: auto auto;
    background-color: white;
    border-radius: 15px;
    justify-content: space-evenly;
}

img{
    width: 240px;
    height: auto;
    margin: 0px auto
}

.loginBtn{
    color: white;
    background-color: #4273b8;
    text-decoration: none;
    width:240px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
}

#message{
    color: red;
    text-align: center;
}

main.fullHeight{
    height: 100vh!important;
}

form.form-signin{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label{
    color: #4273b8;
    position: relative;
    padding-left: 3px;
    padding-right:3px;
    background-color: white;
    font-size: 0.9rem;
    top: 5px;
}

input{
    width: 100%;
    height: 50px;
    border: solid #EEEEEE 1px;
    border-radius: 3px;
    padding: 5px;
    color: #28456e;
}

input:hover{
    border: solid #4273b8 1px!important;
    outline: none!important;
}

input:focus{
    border: solid #4273b8 3px!important;
    outline: none!important;
}