body{
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}


.inscription{
    display: flex;
    margin: 50px auto;
    align-items: center;
    flex-direction: column;
    background-color: var(--light-gray);
    filter: drop-shadow(0px 40px 50px rgba(0, 0, 0, 0.192));
    width: 800px;
    min-height: 300px;
    height: auto;
    border-radius: 50px;
    padding-bottom: 40px;
}

.inscription h1{
    margin: 40px 0 0 0;
    font-size: 32px;
    font-family: "inter", sans-serif;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
}

form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mail-container{
    margin: 40px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pseudo-container{
    margin: 40px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pass-container{
    margin: 40px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pass2-container{
    margin: 40px 0 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user{
    width: 30px;
    height: 30px;
    color: var(--text-color);
}

.psd{
    width: 30px;
    height: 30px;
    color: var(--text-color);
}

.lock{
    width: 30px;
    height: 30px;
    color: var(--text-color);
}

.lock2{
    width: 30px;
    height: 30px;
    color: var(--text-color);
}



label{
    font-size: 20px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    color: var(--text-color);
}

#email {
    padding: 20px 15px;
    width: 580px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

#email::placeholder {
    color: #777777;
    font-weight: 400;
}

#email:focus {
    outline: none;
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.11));
}


#pseudo {
    padding: 20px 15px;
    width: 580px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

#pseudo::placeholder {
    color: #777777;
    font-weight: 400;
}

#pseudo:focus {
    outline: none;
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.11));
}


.password-container {
    position: relative;
    width: 580px;
    display: flex;
    align-items: center;
}

#password {
    padding: 20px 15px;
    padding-right: 60px;
    width: 100%;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

#password::placeholder {
    color: #777777;
    font-weight: 400;
}

#password:focus {
    outline: none;
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.11));
}

.password2-container {
    position: relative;
    width: 580px;
    display: flex;
    align-items: center;
}

#password2 {
    padding: 20px 15px;
    padding-right: 60px;
    width: 100%;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

#password2::placeholder {
    color: #777777;
    font-weight: 400;
}

#password2:focus {
    outline: none;
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.11));
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle-password.cross {
    transform: rotate(180deg);
}

.toggle-password2 {
    position: absolute;
    right: 15px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toggle-password2.cross {
    transform: rotate(180deg);
}


.accepter {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.accepter:hover {
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.11));
}

.accepter input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--gray);
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: transparent;
    margin-right: 12px;
}

.accepter input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.accepter input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    color: white;
}

.accepter label {
    font-size: 16px;
    font-family: "inter", sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.5;
    cursor: pointer;
}

.conditions {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.conditions:hover {
    opacity: 0.7;
    text-decoration: underline;
}


.erreur-inscription{
    margin: 10px 0 0 0;
    color: #FF0000;
    font-size: 16px;
    font-family: "inter", sans-serif;
    font-weight: 400;
}


#connexion-btn{
    margin: 40px 0;
    width: 250px;
    align-self: center;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 0;
    font-size: 24px;
    font-family: "inter", sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: 200ms;
}

#connexion-btn:hover{
    filter: drop-shadow(0px 10px 8px rgba(0, 0, 0, 0.103));
}

#connexion-btn:focus{
    outline: none;
    background-color: #CDCDCD;
    color: #fff;
}

hr{
    width: 580px;
    border: 1px solid #8a8a8a;
    margin: 10px 0;
}

.connexion{
    margin: 40px 0;
    text-decoration: none;
    color: #555;
    font-family: Inter;
    font-size: 24px;
    font-weight: 400;
}

.connexion:hover{
    color: var(--text-color);
}




@media screen and (max-width: 925px) {
    .inscription {
        width: 600px;
    }
    form{
        align-items:center;
    }
    .mail-container, .pseudo-container, .pass-container, .pass2-container {
        width: 400px;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
    #email {
        padding: 20px 15px;
        width: 400px;
    }
    #pseudo {
        padding: 20px 15px;
        width: 400px;
    }
    .password-container {
        width: 400px;
    }
    .password2-container {
        width: 400px;
    }
    hr{
        width: 400px;
    }
    .accepter {
        width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #connexion-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 650px) {
    .inscription {
        width: 500px;
    }
    
    .mail-container, .pseudo-container, .pass-container, .pass2-container {
        width: 350px;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
    
    #email, #pseudo {
        width: 350px;
    }
    
    .password-container, .password2-container {
        width: 350px;
    }
    
    hr {
        width: 350px;
    }
    
    .accepter {
        width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    #email::placeholder, #pseudo::placeholder, #password::placeholder, #password2::placeholder {
        font-size: 16px;
    }
}

@media screen and (max-width: 550px) {
    .inscription {
        width: 400px;
    }
    
    .mail-container, .pseudo-container, .pass-container, .pass2-container {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
    
    #email {
        padding: 20px 15px;
        width: 300px;
    }
    
    #pseudo {
        padding: 20px 15px;
        width: 300px;
    }
    
    .password-container {
        width: 300px;
    }
    
    .password2-container {
        width: 300px;
    }
    
    .accepter {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    hr{
        width: 300px;
    }
}

@media screen and (max-width: 425px) {
    .inscription {
        width: 300px;
        border-radius: 40px;
    }
    
    .mail-container, .pseudo-container, .pass-container, .pass2-container {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
        justify-content: flex-start;
    }
    
    #email {
        width: 250px;
    }
    
    #pseudo {
        padding: 20px 15px;
        width: 250px;
    }
    
    .password-container {
        width: 250px;
    }
    
    .password2-container {
        width: 250px;
    }
    
    .accepter {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pass2-container label{
        width: 200px;
    }
    
    #connexion-btn{
        width: 200px;
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }
    
    hr{
        width: 200px;
    }
    
    .connexion{
        font-size: 18px;
    }
}


.cadreMenu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    transition: left 0.3s ease !important;
    z-index: 80 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: var(--menu-color) !important;
    overflow: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cadreMenu.active {
    left: 0 !important;
}

.no-scroll {
    overflow: hidden !important;
}

.menu-burger {
    display: block !important;
    z-index: 90 !important;
}

.pfp_navbar_div {
    margin: 0 !important;
}

.middleMenu {
    margin-bottom: 150px !important;
}

.middleMenu div a p, .bottomMenu div a p {
    margin: 0 auto !important;
}

.cadreMenu svg {
    margin: 0 !important;
}

.middleMenu div a, .bottomMenu div a {
    width: fit-content !important;
    height: 33px !important;
    margin: 0 !important;
    align-items: center !important;
    gap: 10px !important;
}