﻿html, body, #Main, .mainContentPane, .contentPane {
    height: 100% !important;
    margin: 0;
}

.login-page {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    background: url("/Content/Images/loginWallpaper.jpg") no-repeat center center fixed;
    background-size: cover;
    min-height: 600px;
}

.login-body {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 18px;
}

.login-body * {
    font-family: Roboto-Medium, Roboto, Tahoma, sans-serif;
    font-size: 1em;
}

.login-body > * {
    height: fit-content;
    background-color: white;
    border-radius: 20px;
    padding-inline: 30px;
    padding: 30px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}
#login-block{
    padding-block-start: 15px !important;
    padding-inline: 0px !important;
}

#app-full-logo {
    width: 400px;
}

@font-face {
    font-family: 'SometypeMono-Bold';
    src: url('/Content/Police/SometypeMono-Bold.woff') format('woff'), /* new browsers */
    url('/Content/Police/SometypeMono-Bold.ttf') format('ttf'); /* old browsers */
}
.login-title {
    font-family: SometypeMono-Bold, Tahoma, sans-serif;
    font-size: 1em;
    display: block;
    width: 100%;
    text-align: center;
}

#login-block form {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 85%;
}

.field-container-column {
    display: flex;
    flex-flow: column;
    width: 100%;
    padding-block: 10px;
}

.field-container-column label {
    padding-block: 5px;
}

.field-container-column input {
    padding: 0 10px;
}

#username {
    border-radius: 5px;
    border: 1px #c4c4c4 solid;
    height: 35px;
    background-color: #f7f7f7;
}

#password {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.field-container-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
}

.field-container-row span {
    margin-inline: 5px;
}

#login-btn {
    font-size: 1.4em;
    background-color: rgb(51, 189, 239);
    color: white;
    width: 100%;
    padding-block: 15px;
    border: 0;
    border-radius: 4px;
    margin-block-start: 0;
    margin-block-end: 15px;
    font-weight: 600;
}

#login-btn:hover {
    filter: brightness(105%);
    cursor: pointer;
}

#login-btn:active {
    filter: brightness(90%);
}

#remember-me-label {
    color: #3F3F3F;
}

#forgotten-password {
    font-size: 0.8em;
    color: #3F3F3F;
}

input[type="checkbox"] {
    accent-color: #2d9bca;
    width: 18px !important;
    height: 18px !important;
}

#login-infos {
    width: 35%;
    color: #3F3F3F;
}

#login-infos * {
    color: #3F3F3F;
}

.separated-title {
    width: 100%;
    border-bottom: 2px solid rgba(0,0,0,0.19);
    padding-block-end: 5px;
    margin-block-end: 10px;
    font-weight: 600;
    font-size: 1.5em !important;
}

#news {
    width: 100%;
    font-size: 0.8em;
}

.error-msg {
    color: #EC0000;
    margin-block-start: 10px;
    margin-block-end: 10px;
    text-align: center;
}

.eye-input {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: #fbfbfb;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    width: auto;
    height: 35px;
}

.eye-input input {
    border: none;
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    outline: none;
}

.fa-eye, .fa-eye-slash {
    border-left: 1px solid #c4c4c4;
    padding: 0 5px;
}

.fa-eye-slash {
    width: 25px;
    margin-inline: 1px;
}

.fa-eye {
    width: 24px;
    margin-inline: 2px;
}

.fa-eye:hover {
    cursor: pointer;
}

.fa-eye-slash:hover {
    cursor: pointer;
}

#version {
    text-align: end;
}

#version span{
    color: white !important;
    font-weight: 600;
    padding-inline: 5px;
    border-radius: 5px;
}