﻿body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    background-color: white !important;
    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.9;
    object-fit: cover;
}

.container {
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.logo-container {
    background-color: white;
    display: flex;
    justify-content: start;
    padding: 20px 50px 20px 50px;
    border-bottom: 1px solid #dbdbdb;
    box-shadow: inset 0 -0.5px 0 0 grey;
}




.title {
    color: #1367ac;
    font-weight: 600;
    text-align: center;
    margin: 10px;
}

h2.title {
    margin: 0px;
    padding: 10px;
}

.input-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

input[type=email] {
    width: 250px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
}

input[type=password] {
    width: 250px;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
}

.form-container {
    margin: 80px;
    background-color: white;
    min-width:300px;
    max-width: 40%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(19, 103, 172,0.9);
}

.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;
    }


.center-form {
    margin:auto;
    background-color: white;
    width:fit-content;
    display: flex;
    justify-content: center;
    height: 90%;
}

.remember-login {
    margin: auto;
    width: 70%;
    padding: 20px 0px;
    display: flex;
    justify-content: space-around;
    color: grey;
}

.login-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}

.custom-login-button {
    width: 250px;
    color: white;
    background-image: linear-gradient(to right, #1367ac, #5ab2fa);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
}


.custom-checkbox {
    display: flex;
    margin-left: 15px;
}

.custom-cancel-button {
    width: 300px;
    height: 45px;
    background: none;
    border: 2px solid #1367ac;
    color: #1367ac;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1px;
    margin: 10px;
}

    .custom-cancel-button:hover {
        border-color: #0f4f85;
        color: #0f4f85;
        box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    }

.forgot-password-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.forgot-password {
    color: grey;
    text-align: center;
    margin: auto;
}

.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;
    }
