@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto_bold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Roboto';
    background-color: #fff;
}

.content-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.alert {
    margin-bottom: 15px;
    border-width: 0 0 0 6px;
    padding: 1rem 1.5rem;
    color: #111111;
}

.alert i {
    font-size: 20px;
    margin-right: 11px;
}

.alert-error {
    background-color: #FAE1DB;
    border: 0 none;
    color: #111111;
}

.alert-error i {
    color: red;
}

.alert-success {
    background-color: rgba(61, 134, 0, 0.1);
    border: 0 none;
}

.alert-success i {
    color: #3e8601;
}

.alert-warning {
    border-color: #ffeeba;
    background-color: #ffe399;
}

.alert-info {
    background-color: rgba(0, 73, 144, 0.1);
    border: 0 none;
}

.alert-info i {
    color: #0f3d78;
}


.footer {
    display: flex;
    align-items: center;
    padding: 4px 100px;
    background: #404856;
    color: white;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-grow: 1;
}

.footer span {
    padding: 10px;
}
.footer span a {
    color: white;
}

.content-body {
    margin-top: 30px;
    flex-grow: 3;
}

.header {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: nowrap;
    padding-right: 15px;
}

.logo-img,
.logo-desc {
    display: inline-block;
    margin-right: 0.5em;
}

.logo-img img {
    height: 50px;
}

.logo-fami img {
    margin-top: 6px;
    height: 38px;
}

.logo-desc {
    font-size: 14px;
    margin-left: 5px;
    flex-grow: 1;
}

.logo-desc p {
    text-align: left;
    margin: 0;
}

.logo-desc h1 {
    color: #256cb9;
    margin: auto;
    font-size: 22px;
    font-weight: normal;
}


.logo-desc p:last-child {
    text-transform: uppercase;
    font-size: 10px;
    font-family: "roboto_medium", Arial, sans-serif;
    margin-top: 3px;
}


.header-items {
    display: block;
    clear: both;
    font-size: 15px;
    font-family: "roboto_medium", Arial, sans-serif;
    padding-top: 8px;
}

.header-items > a {
    color: #256cb9;
}

.help-item {
    margin-right: 15px;
}

.contact-item {
    margin-right: 15px;
    margin-left: 10px;
}

.header-right {
    float: right;
}

.first-connection {
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 64em) {
    .logo-img img {
        height: 100px;
    }

    .logo-fami img {
        height: 60px;
    }

    .header {
        margin-top: 12px;
        padding-left: 8.33%;
        padding-right: 8.33%;
    }

    .logo-desc {
        font-size: 22px;
        margin-top: 16px;
    }

    .logo-desc p:last-child {
        font-size: 16px;
    }
}

@media screen and (max-width: 551px) {
    .footer {
        padding: 4px 0 !important;
    }
}

@media screen and (max-width: 680px) {
    .footer {
        padding: 4px 10px !important;
    }
}


button.login-btn.pointer:disabled {
    background: grey;
}

.form-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 600px;
    max-width: 460px;
    margin: 0 auto;
    justify-content: space-evenly;
    background: #F5F5F5;
    padding: 12px;
}


.primary-btn {
    align-self: center;
    min-width: 103px;
    padding: 20px;
    height: 40px;
    background: #256CB9;
    color: white;
    border: 1px solid #256CB9;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 16px;
    margin: auto
}

.text-center {
    text-align: center;
}

button:disabled {
    background: #cac5c5f5;
    border: none;
    color: black !important;
}

.lang-selector {
    text-transform: uppercase;
    width: 106px;
    background-color: #fff;
}

.uppercase {
    text-transform: uppercase;
}

.input-labels {
    text-align: left;
    letter-spacing: 0.47px;
    color: #656565;
    font-size: 14px;
    margin-bottom: 10px;
}

.tooltip {
    background: #256cb9;
    color: white;
    padding: 6px;
    display: inline-block;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    line-height: 14px;
    text-align: center;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    border-style: none;
    width: 25px;
    height: 25px;
    font-family: inherit
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 174px;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    padding: 10px;
    top: 23px;
    left: 4px;
    background: #fafafa;
    border: .05em solid #000;
    color: #333;
    font-size: 16px;
}

.form-group.input {
    width: 320px;
    margin: 22px auto;
}
.form-group.input label {
    text-align: left;
    font-weight: 400;
    margin-left: 4px;
}
.form-group.input input {
    height: 34px;
    width: calc(100% - 35px);
    padding: 6px 12px;
    border: 1px solid #656565;
    margin: 0 auto;
}
.reset-password button {
    margin: 39px auto 0;
    color: #fff;
}
.form-group input{
    width: calc(100% - 35px);
}
@media (max-width: 479px)  {
    .content-body div{
        width: 100% !important;
    }
    .tooltip .tooltiptext {
        position: relative !important;
        top: 5px !important;
        right: 188px !important;
        left: initial !important;
    }
}
.mrg-top-15 {
    margin-top: 15px;
}

#user-already-connected {
    width: 35rem;
    z-index: 12004;
    left: 36%;
    top: 36%;
    transform: none;
    opacity: 1;
    height: auto;
    visibility: hidden;
    position: absolute;
    margin: 0 30px 30px;
    border-radius: 0;
    box-shadow: 3px 3px 5px 0 rgba(0,0,0,.3);
    #container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #icon {
        padding: 30px 0px 5px 15px !important;
    }
    .entete {
        border-radius: 0;
        background-color: #D13721;
        color: #fff;
        padding: 1rem 2rem;
        font-size: 1.5rem;
        text-transform: uppercase;
        font-family: "Roboto_bold";
        border: 0;
    }
    .description {
        color: black;
        text-align: center;
        padding: 7px;
    }
    .bold {
        font-weight: bold;
    }
    .fa {
        color: #D13721;
        margin-right: 1rem;
        width: auto;
        height: 4rem;
        font-size: 40px;
    }
    .message {
        text-align: center;
        background-color: #fff;
        padding: 3rem 2rem 2rem;
    }
    #wrapper {
        display: flex;
        justify-content: center;
        button {
            display: block;
            line-height: normal;
            padding: 0.8rem 1.2rem;
            color: #fff;
            background-color: #256cb9;
            border: 1px solid #256cb9;
            font-size: 15px;
            margin: 15px 15px 15px 15px;
            cursor:pointer;
        }
    }
}
@media screen and (max-width:480px) {
    #user-already-connected {
        margin: 0px !important;
        left: 0%;
    }
}

@media screen and (max-width: 768px) and (min-width: 480px) {
    #user-already-connected {
        margin: 0px !important;
        left: 10%;
    }
}