﻿html,
body {
    height: 100%;
}

body {
    /*
    background-image: url("/images/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    */
    background-color: #E7EAE1;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    /*background-color: #f5f5f5;*/
}

.form-container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin: auto;
    text-align: center;
}

.form-container .form-auth {
    background-color: #F6FBF2C0;
}

.form-container .checkbox {
    font-weight: 400;
}

.form-container .form-floating:focus-within {
    z-index: 2;
}

.form-container input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-container input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.validation-summary-errors {
    font-weight: bold;
    text-align: left;
}

/*.validation-summary-errors ul {
    list-style: none;
    padding-left: 0;
}*/