html,
body {
    height: 100%;
    width: 100%;
    background-color: #FFEEDB;
    font-family: Calibri, sans-serif;
    font-size: 1.05em;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.modal {
    border-radius: 10px;
    height: 400px;
    width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.75);
    background: #f0efeb;
}

.message {
    font-size: 2em;
    text-align: center;
    color: orange;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.field {
    padding-bottom: 14px;
}

.field input {
    min-height: 24px;
    border-radius: 4px;
    border: 1px solid #000000;
}

.loginBtn {
    padding: 8px;
    font-size: 0.9em;
}

.field span {
    padding-right: 4px;
}