﻿body {
    display: flex;
    flex-direction:column;
    min-height:100vh;
}

.container {
    flex: 1;
    background-color: #FEFFF2;
    max-width: 100% !important;
    min-width: 460px !important;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    object-fit: cover;
}

.logo-container {
    background-color: black;
    display: flex;
    justify-content: start;
    padding: 20px 50px 20px 50px;
    box-shadow: inset 0 -0.5px 0 0 grey;
}

.logo {
    width: 250px;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.title {
    color: #000000;
    font-weight: 200;
    letter-spacing: 5px;
    text-align: center;
}

h2.title {
    margin: 0px;
    padding: 10px;
}

.input-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

input[type=email] {
    width: 322px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=text] {
    width: 322px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password] {
    width: 322px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}


.remember-login {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom:20px;
}

.custom-login-button {
    width: 322px;
    color: white;
    background-color: #9F0200;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
}

.center-form {
    margin: auto;
    background-color: #FEFFF2;
    display: flex;
    justify-content: center;
    height: 90%;
}

.form-container {
    margin: 80px;
    background-color: #FEFFF2;
    min-width: 300px;
    max-width: 40%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.validation {
    width: auto;
    color: rgba(156,0,6, 0.9);
    text-align: center;
    font-weight: bold;
}

    .validation ul,
    .validation li {
        color: rgba(156,0,6, 0.9);
        margin: 10px;
        padding: 0;
        list-style: none;
    }


.remember-login {
    margin: auto;
    width: 50%;
    display: flex;
    justify-content: space-around;
    color: grey;
}

.forgot-password {
    color: grey;
    text-align: center;
    margin: auto;
}

.forgot-password-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.powered {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: black;
}

    .powered a {
        color: white !important;
        text-decoration: underline !important;
    }

.footer-container {
    display: flex;
    flex-direction: column;
    background-color: black;
    width: inherit;

}

.footer-list {
    display: flex;
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 10px;
}



    .footer-list a {
        color: #bbb;
    }

        .footer-list a:hover {
            text-decoration: none;
            color: white;
        }

    .footer-list li {
        color: #bbb;
    }
