@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* 
--gray1: #9e9e9e;


--gray2: #202020; 
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter" !important;
    font-weight: bold;
    color: #ffffff;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #000000;

    display: flex;
    flex-direction: column;

    font-weight: bold;

    overflow: hidden;
}


input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}



/**************************************************/


.flouPourMdp {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #000000b2;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);

    color: #ffffff;
}

#form_loginEtMdp {
    height: 375px;
    width: 270px;

    background-color: #202020;
    border-radius: 12px;
    color: #ffffff;

    display: flex;
    flex-direction: column;
}

#form_loginEtMdp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
    color: #ffffff;
}

#form_loginEtMdp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #3b3b3b !important;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 4px;

    color: #ffffff !important;

    border: none;
}

#form_loginEtMdp>input:focus {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #3b3b3b !important;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;

    border: none;
    outline: none;
}

#form_loginEtMdp>.boutonLogin {
    margin-top: 32px;
    height: 50px;
    width: 240px;
    margin-left: 11px;

    background-color: #ffffff;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.8rem;
    color: #000000;
    cursor: pointer;

    font-weight: bold;
}

.lienVersSignUp {
    color: #ffffff;
    width: 100%;
    height: 30px;
    margin-top: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersSignUp>span {
    cursor: pointer;
}







#form_signUp {
    height: 375px;
    width: 270px;

    background-color: #202020;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    color: #ffffff;
    box-shadow: #0000009a 0 0 16px;
}

#form_signUp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
}

#form_signUp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;

    border: none;
    background-color: #3b3b3b;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;
}

#form_signUp>input:focus {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;

    border: none;
    background-color: #3b3b3b;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;
    outline: none;
}

#form_signUp>.boutonSignUp {
    margin-top: 32px;
    height: 50px;
    width: 250px;
    margin-left: 10px;

    background-color: #ffffff;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.8rem;

    cursor: pointer;

    color: #000000 !important;
}

.lienVersLogIn {
    width: 100%;
    height: 30px;
    margin-top: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersLogIn>span {
    cursor: pointer;
}

#messagePourConexion {
    position: absolute;
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10000;
    transition: .3s;
    transform: translateY(-150px);
}

#messagePourConexion>div {
    width: 300px;
    height: 80px;

    border-radius: 12px;
    background-color: #1a1a1a;
    border: solid 1px #3b3b3b;
    font-size: 1.3rem;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding-left: 12px;
    padding-right: 12px;

    color: #ffffff;
}

header {
    height: 80px;
    overflow: hidden;
    width: 100%;
    display: flex;

    font-size: 1.2rem;
    padding: 10px;
}

.titre {
    width: 120px;
    height: 60px;
    font-size: 2.2rem;

    display: flex;
    align-items: center;
    text-decoration: underline;
}

.points {
    height: 60px;
    width: calc(100% - 120px - 70px);

    display: flex;
    justify-content: end;
    align-items: center;

    padding: 10px;
}

.nbPersonneConectes {
    width: 70px;
    height: 60px;

    font-size: .7rem;

    display: flex;
    justify-content: end;
    align-items: center;

    text-align: right;
}

main {
    height: calc(100% - 200px - 80px);
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 3rem;

    transition: .2s;
}

footer {
    height: 200px;
    width: 100%;

    color: #000000 !important;
}

footer > form {
    height: 100%;
    width: 100%;
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#numericInput {
    height: 50px;
    width: 234px;

    text-align: center;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 3rem;

    padding: 10px;

    border: none;

    background-color: #202020;

    outline: solid 8px #202020;

    transition: .20s;
}

#numericInput:focus {
    outline: solid 8px #202020;
}

#submitInput {
    cursor: pointer;
    height: 50px;
    width: 250px;

    text-align: center;
    border-radius: 10px;
    color: #000000 !important;
    font-size: 1.5rem;

    padding: 10px;

    border: none;

    background-color: #ffffff;

    font-weight: bold;
}