.form-container {
    display: grid;
    width: 100%;
    height: calc(100vh - 350px);
    justify-content: center;
    vertical-align: middle;
    justify-items: center;
    justify-self: center;
    margin: auto;
}

input {
    -webkit-appearance: none;
}

form {
    width: 300px;
    height: 320px;
    display: grid;
    grid-template-rows: 17% 15% 15% 24% 22%;
    justify-content: center;
    justify-items: center;
    vertical-align: middle;
    justify-self: center;
    margin: auto;

    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

.login-area {
    width: 100%;
    font: normal normal bold 50px/1.4em worksans-semibold,'work sans';
    font-family: 'Campton Extra Light';
    font-size: 40px;
    line-height: .8em;
    margin-bottom: 23px;
    margin-top: 10px;
    padding-top: 0;
    padding-bottom: 0;
    color: #393E44;
    text-align: center;
}

.username {
    border: none;
    outline: none;
    border-bottom: 1px solid;
    border-color: rgba(150, 158, 167, 1);
    border-radius: 0px;
    width: 250px;
    height: 26px;
    padding: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: 'Campton Extra Light';
    vertical-align: middle;
    justify-self: center;
    justify-content: center;
    justify-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #393E44;
    /* margin: auto; */
    margin-top: 5px;
    -webkit-transition: border-color .2s ease-in-out;
    text-align: center;
    -webkit-appearance: none;
}

.username:focus {
    border-color:#009eb4;
}

.username::placeholder {
    opacity: 0.8;
    font-size: 0.9em;
    font-family: 'Campton Extra Light';
    color: #393E44;
}

.enter-credentials {
    padding-top: 6px;
    font-family: 'Campton Extra Light';
    font-size: 16px;
    /* line-height: 16px; */
    font-weight: 300;
    color: #393E44;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
}

.pass-err-container {
    border: none;
    outline: none;
    width: 250px;
    height: 26px;
    text-align: center;
}

.password {
    border: none;
    outline: none;
    border-bottom: 1px solid;
    border-color: rgba(150, 158, 167, 1);
    border-radius: 0px;
    width: 250px;
    height: 26px;
    padding: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: 'Campton Extra Light';
    vertical-align: middle;
    justify-self: center;
    justify-content: center;
    justify-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #393E44;
    /* margin: auto; */
    margin-top: 5px;
    -webkit-transition: border-color .2s ease-in-out;
    text-align: center;
    -webkit-appearance: none;
}

.password:focus {
    border-color: #009eb4;
}

.password::placeholder {
    opacity: 0.8;
    font-size: 0.9em;
    font-family: 'Campton Extra Light';
    color: #393E44;
}

.incorrect-password {
    font-size: 13px;
    line-height: 26px;
    font-weight: bold;
    color: #ff3d3d;
    text-align: center;
    padding-top: 0;
    font-family: 'Campton Extra Light';
}

.button {
    width: 250px;
    text-decoration: none !important;
    font-size: 20px !important;
    background-color: #009eb4;
    color: #ffffff;
    height: 48px;
    border-radius: 0;
    font-weight: normal;
    font-family: 'Campton Extra Light';
    opacity: 1;
    transition: opacity .2s ease-in-out;
    border-radius: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border: 0;
    outline: none;
    margin: auto;
    cursor: pointer;
}

.button:hover {
    background-color:#009eb4;
    color: #ffffff;
    opacity: 0.85;
}

.button:focus {
    outline: none;
    border: none;
}

@font-face {
    font-family: 'Campton Light';
    src: url('../fonts/Campton\ Light.otf');
}

@font-face {
    font-family: 'Campton Extra Light';
    src: url('../fonts/Campton\ Extra\ Light.otf');
}