@font-face {
    font-family: Ping Pong;
    src: url('../fonts/barlow-latin-400-normal.woff2');
    font-weight: 400;
}

@font-face {
    font-family: Ping Pong;
    src: url('../fonts/barlow-latin-500-normal.woff2');
    font-weight: 500;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Ping Pong, sans-serif;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background: #f8f8fb;
}

.header {
    display: flex;
    padding: 0 24px;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 6%), 0 1px 4px rgba(0, 0, 46, .1), 0 0 rgba(0, 0, 46, 6%);
    min-height: 64px;
    justify-content: center;
    align-items: center;
}

.logo {
    content: url('../icon/AR24.svg');
    width: 103px;
    height: 24px;
}

.main {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    width: 548px;
    padding: 48px 0 96px 0;
    gap: 38px;
}

.title {
    display: flex;
    align-items: center;
    text-align: center;
}

.title h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 31.92px;
    color: #00008c;
    font-weight: 600;
    text-wrap: balance;
    line-height: 1.1;
}

.error {
    display: none;
    background-color: #FEF4F5;
    color: #D00000;
    padding: 24px;
    border-radius: 8px;
}

.flex {
    display: flex;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.8;
    padding: 0 8px;
}

.subtitle {
    color: #666d92;
    font-size: 15.96px;
    font-weight: 700;
}

.information {
    color: #666d92;
    font-size: 16px;
    line-height: 1.9;
}

.top-url {
    color: #000fff;
    text-decoration: underline;
}

.form {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    border: 0;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 46, 4%), 0 0 2px rgba(0, 0, 45, 6%), 0 0 1px rgba(0, 0, 45, 4%);
    transition: box-shadow .3sease-in-out;
}

.operators {
    content: url('../icon/operators.png');
    width: 150px;
    margin: 48px 0 20px 0;
}

.form-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 24px 0;
}

.password-input {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.eye {
    content: url('../icon/eye.svg');
    position: absolute;
    margin: 0 15px 0 0;
}

.eye-close {
    content: url('../icon/eye_close.svg');
    position: absolute;
    margin: 0 15px 0 0;
}

.form-input input {
    background: #fff;
    border: 1px solid #dadbe0;
    border-radius: 8px;
    font-size: 17px;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
}

.form-input input::placeholder {
    font-size: 14px;
}

.form-input label {
    font-weight: 500;
    color: #00008c;
    font-size: 14px;
}

.form-button {
    display: flex;
    justify-content: center;
    margin: 24px 0 0 0;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox label {
    color: #666d92;
    font-size: 12px;
    font-weight: 500;
}

.btn {
    font-family: "Montserrat", sans-serif;
    padding: 15px 32px;
    border-radius: 3em;
    font-weight: 600;
    background: #0000ff;
    outline: none;
    color: #fff;
    border: 0;
}

.btn:focus {
    background: #0000ffa3;
}

.footer {
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #666d92;
    justify-content: center;
    align-items: center;
    padding: 24px 0 72px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 1200px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #c6c8d0;
    padding: 0 0 24px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-top-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-top-right {
    display: flex;
    gap: 48px;
    align-items: center;
}

.frenchtech {
    content: url('../icon/frenchtech.png');
    width: 61px;
    height: 65px;
}

.regionals {
    content: url('../icon/regionalsace.png');
    width: 54px;
    height: 63px;
}

.syntec {
    content: url('../icon/syntec.png');
    width: 80px;
    height: 31px;
}

.footer-bottom {
    padding: 24px 0 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.column {
    display: flex;
    flex-direction: column;
}

.contact {
    color: #00008c;
}

.phone {
    font-size: 16px;
}

.contact-info {
    font-size: 14px;
    gap: 15px;
}

.column div {
    display: flex;
    flex-direction: column;
}

.column div div {
    display: flex;
    flex-direction: column;
}

.flags {
    flex-direction: row!important;
    justify-content: space-between;
    padding: 0 0 0 10px;
}

.fr-flag {
    content: url('../icon/fr-flag.svg');
    height: 30px;
    width: 30px;
}

.en-flag {
    content: url('../icon/en-flag.svg');
    height: 30px;
    width: 30px;
}

.nl-flag {
    content: url('../icon/nl-flag.svg');
    height: 30px;
    width: 30px;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}

li {
    list-style: none;
}

.copyright {
    justify-content: flex-end;
    gap: 20px;
}

.btn, .eye, .eye-close, li, .logo, input[type="checkbox"] {
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .footer {
        padding: 24px 20px 72px 24px;
    }
    .footer-container {
        width: 100%;
    }
}

@media only screen and (max-width: 590px) {
    .main {
        padding: 0 20px;
    }
    .container {
        width: 100%;
    }
    .title h1 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 500px) {
    .footer-top-left {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-top-right {
        width: 100%;
        justify-content: space-around;
    }
}

@media only screen and (max-width: 330px) {
    .footer-top-right {
        flex-direction: column;
    }
}