* {
    box-sizing: border-box;
    /*font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;*/
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    /*background-color: #435165;*/
}
.login {
    width: 360px;
    background-color: #ffffff;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
    margin: 100px auto;
}

.login-header {
    background-color:black;
}

.login h1 {
    text-align: center;
    color: #5b6574;
    font-size: 24px;
    padding: 20px 0 20px 0;
    margin: 0px;
    border-bottom: 1px solid #dee0e4;
}
.login form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.login form label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3274d6;
    color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
    width: 292px;
    height: 40px;
    border: 1px solid black;
    margin-bottom: 20px;
    padding: 0 15px;
}
.login form input[type="submit"] {
    height: 38px;
    font-size: 14px;
    margin-top: 20px;
    width: 77px;
    background-color: white;
    border: 1px solid black;
    cursor: pointer;
    font-weight: bold;
    color: #009949;
    transition: background-color,color 0.2s;
}
.login form input[type="submit"]:hover {

    background-color: #009949;
    color: white;
    transition: background-color,color 0.2s;

}

.loginLabel{
    margin-left: 30px;
    margin-bottom: 10px;
    float: left;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
}
.loginInput {
    width: 100%;
    margin-left: 30px;
}

.loginHolder{
    border:1px solid black;
    position:relative;
}

.loginTitle {
    width: 100%;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 20px;
}

.messageBackground {
    background-color:black;
    position:absolute;
    top: 75px;
    left: 0px;
    width: 358px;
    height: 0px;
    transition: height 1.0s;
}

.messageDisplay{
    height: 306px !important;
    transition: height 0.5s;
}
.messageLabel{
    color: #c51d1e;
    position: absolute;
    top: 206px;
    left: 62px;
    font-size: 20px;
}

