

body{
    font-family: "Roboto", "Arial", sans-serif;
    background-color: #2B2B2B;
    margin: 0
}


#center-block {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 18vh auto;
}


#login_text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30pt;
  color: #9FCCBB;
  margin-bottom: 25px;
}


#error_message {
    color: #BA0000;
    font-size: 15pt;
    margin: 4px;
    display: none;
}


input {
    font-size: 22pt;
    background-color: #3C3F41;
    border-color: #2B2B2B;
    border-radius: 5px;
    color: #EDEDED;
    padding: 15px;
    border-style: none;
    margin-bottom: 16px;
}


input:focus{
    outline: 1px solid #B6C1BD;
}


button {
    font-size: 23pt;
    color: #EDEDED;
    border-style: none;
    border-color: #3E005B;
    border-radius: 5px;
    background-color: #CC457B;
    margin-top: 12px;
    padding: 12px;
}


button:active{
    background-color: #A83965;
    color: #D3D3D3;
}


