html, body {
    margin: 0;
    height: 100%;
    width: 100%;
    background: #00153C;
    font-family: "Lato", sans-serif;
}
p, h1 {
    margin: 0;
}
main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}
.logo-top {
    width: 156px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate3d(-50%, 0, 1px);
}
.logo-bottom {
    width: 193px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.connexion, .counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: white;

    padding: 32px 84px;
    border-radius: 20px;

    width: calc(662px - 84px - 84px);
}
.connexion {
    width: max-content;
}

h1 {
    font-size: 24px;
    text-align: center;
    color: #00153C;
    font-weight: 900;
    line-height: 100%;
    text-transform: uppercase; 

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
h1 span {
    position: relative;
    z-index: 2;
}
h1 span::before {
    content: "";
    background: linear-gradient(90deg, #00BCFD 0%, #23D2B5 100%);
    display: block;
    width: 100%;
    height: 11px;
    padding: 0 12px;
    position: absolute;
    left: -12px;
    bottom: 0;
    z-index: -1;
}
/* COUNTER */
.counter {
    display: none;
}
.counter.active {
    display: flex;
}
.counter_form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.counter_logo {
    width: 158px;
    margin-bottom: 20px;
}
.counter_value {
    display: flex;
    flex-direction: column;
    align-items: center;

    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.counter_count {
    display: flex;
    align-items: center;
    font-size: 52px;
    color: #00153C;
}
.counter_count::after {
    content: "";
    height: 44px;
    width: 32px;
    display: block;
    background: url('../images/feet.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 12px;
    margin-top: 18px;
}
.counter_input {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    outline: none;
    border: 1px solid #CCC;
    text-align: center;
    color: #00153C;
    margin-bottom: 16px;
    caret-color: #007ACD;
    caret: 1px;
}

.counter_input::placeholder {
    color: #666;
    opacity: 1;
}

.counter_submit {
    width: max-content;
    background: #007ACD;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 auto;
    cursor: pointer;
    font-size: 18px;
}
.counter_submit:disabled {
    background: #CCC;
}


/* CONNEXION */
.connexion_password {
    color: red;
    display: none;
    text-align: center;
}
.connexion_password.active {
    display: flex;
}
.connexion {
    display: none;
}
.connexion.active {
    display: flex;
}
.connexion_form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.connexion_input {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 18px;
    outline: none;
    border: 1px solid #CCC;
    text-align: center;
    color: #00153C;
    margin-bottom: 16px;
    caret-color: #007ACD;
    caret: 1px;
}
.connexion_submit {
    width: max-content;
    background: #007ACD;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 auto;
    cursor: pointer;
    font-size: 18px;
}
.connexion_password {
    color: red;
    display: none;
}
.connexion_password.active {
    display: flex;
}