body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

#Authentification {
    background-color: #F5F9FC;
    background-image: url(../images/background/AuthBackground.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#Authentification .AuthentificationContent{
    width: 520px;
    max-width: 90%;
    border-radius: 12px;
    padding: 30px 15px;
    box-shadow: 0px 4px 40px 0px #0000001A;
    border: 1px solid #F1F1F4;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#Authentification .AuthentificationContent .Authbox{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#Authentification .AuthentificationContent .Authbox h3{
    color: #071437;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

#Authentification .AuthentificationContent .Authbox p{
    color: #4B5675;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

#Authentification .AuthentificationContent .AuthForm{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#Authentification .AuthentificationContent .AuthForm .inputForm {
    display: flex;
    flex-direction: column;
    gap: 8px;
}



#Authentification .AuthentificationContent .AuthForm .inputForm label {
    margin: 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0px;
    color: #071437;
}

#Authentification .AuthentificationContent .AuthForm .inputForm input {
    height: 40px;
    line-height: 40px;
    background: #FCFCFC 0% 0% no-repeat padding-box;
    border: 1px solid #DBDFE9;
    border-radius: 6px;
    text-indent: 12px;
    outline: none;
}

#Authentification .AuthentificationContent .AuthForm .inputForm input::placeholder{
    font-size: 13px;
    font-weight: 400;
    color: #78829D;
}


#Authentification .AuthentificationContent .AuthForm .remembreMe{
    font-size: 13px;
    color: #252F4A;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

#Authentification .AuthentificationContent .AuthForm .remembreMe input {
    min-width: 16px;
    min-height: 16px;
    border: 1px solid #E7ECFA;
}

#Authentification .AuthentificationContent .AuthForm .inputForm input:focus {
    border-color: #034174;
    box-shadow: 0 0 0 2px rgba(3,65,116,0.1);
}

#Authentification .AuthentificationContent .AuthForm .inputForm .passwordWrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#Authentification .AuthentificationContent .AuthForm .inputForm .passwordWrapper input {
    width: 100%;
}

#Authentification .AuthentificationContent .AuthForm .inputForm .passwordWrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a7a7a;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s ease;
}

#Authentification .AuthentificationContent .AuthForm .inputForm .passwordWrapper i:hover {
    color: #034174;
}

#Authentification .AuthentificationContent button#SubmitForm{
    background: #034174;
    border-radius: 6px;
    color: #FFFFFF;
    padding: 13px 16px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

#Authentification .AuthentificationContent #SubmitForm:hover {
    background-color: #045a9d;
    transition: all 0.3s ease;
}







#copyright{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    background: #FFFFFF;
    border-top: 1px solid #F1F1F4;
    color: #78829D;
}

#copyright span.name{
    color: #034174;
}

#copyright .copylinks{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#copyright a{
    letter-spacing: 0px;
    color: #78829D;
    text-decoration: none;
}






@media (max-width: 480px) {
    .AuthentificationContent {
        padding: 20px;
    }
    .AuthForm .inputForm input {
        height: 38px;
    }
}