.bodyLogin {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    gap: 30px;
}

.inputBox {
    justify-content: center;
    position: relative;
    width: 100%;
}

.inputBox input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(87, 87, 87, 0.25);
    background-color: rgb(255, 255, 255);
    color: #000000;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
    transition: 0.5s;
}

.inputBox span {
    position: absolute;
    left: 10px;
    top: 35%;
    padding: 10px;
    pointer-events: none;
    font-size: 1em;
    color: rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
    transition: 0.5s;
}

.inputBox input:valid ~ span,
.inputBox input:focus ~ span {
    color: white;
    transform: translateX(10px) translateY(-7px);
    font-size: 0.65em;
    padding: 0 10px;
    background-color: rgb(255, 159, 63);
    border-left: 1px solid rgba(255, 255, 255, 1);
    border-right: 1px solid rgba(255, 255, 255, 1);
    letter-spacing: 0.2em;
}

.inputBox:nth-child(5) input:valid ~ span,
.inputBox:nth-child(5) input:focus ~ span {
    background: rgba(255, 255, 255, 1);
    color: black;
    border-radius: 2px;
}

.inputBox input:valid,
.inputBox input:focus {
    border: 1px solid rgba(255, 255, 255, 1);
}

.login-card {
    width: 450px;
    background: linear-gradient(darkorange, darkorange, darkorange, transparent);
    padding: 4rem;
    position: relative;
    border-radius: 15px;
}

.login-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(darkorange, darkorange, darkorange, transparent);
    transform: rotate(-5deg);
    border-radius: 15px;
    z-index: -1;
}

.centrage {
    margin-left: auto;
    margin-right: auto;
    margin-top: 7%;
    width: 50%;
    border: solid;
    padding-top: 3%;
    padding-left: 5%;
    padding-right: 5%;
    min-height: 300px;
    margin-bottom: 7%;
    border-radius: 15px;
    border: none;
}

.pLogin {
    color: red;
    text-align: center;
    text-decoration: none;
}


.aLogin {
    text-align: center;
    color: black;
    text-decoration: none;
}

.aLogin :hover {
    text-decoration: underline;
    text-decoration: bold;
    color: black;
}


.ErreurLogin {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.active10 {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: bold;
    text-decoration: underline;
}

.buttonLogin {
    font-size: 19px;
    background-color: darkslategrey;
    color: White;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 2rem;
    width: 100%;
    border: none;
    padding: 1rem 1.5rem;
}

.buttonLogin:hover {
    background-color: rgba(0, 0, 0, .6);
    transition: background 0.5s;
}

.form-label {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: .5rem;
    text-align: left;
}

.active10 {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: bold;
    text-decoration: underline;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
}


@media(max-width: 980px){
    .centrage {
        margin-left: auto;
        margin-right: auto;
        margin-top: 3%;
        width: 70%;
        border: solid;
        padding-top: 3%;
        padding-left: 5%;
        padding-right: 5%;
        min-height: 300px;
        margin-bottom: 7%;
        border-radius: 15px;
        border: none;
    }

    .buttonLogin {
        font-size: 23px;
        background-color: darkslategrey;
        color: White;
        border-radius: 10px;
        cursor: pointer;
        margin-top: 2rem;
        width: 100%;
        border: none;
        padding: 1rem 1.5rem;
    }

    .aLogin {
        text-align: center;
        font-size: 20px;
        color: black;
        text-decoration: none;
    }

    .login-card {
        width: 450px;
        background: linear-gradient(darkorange, darkorange, darkorange, transparent);
        padding: 4rem;
        position: relative;
        border-radius: 15px;
    }

    .login-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(darkorange, darkorange, darkorange, transparent);
        transform: rotate(-5deg);
        border-radius: 15px;
        z-index: -1;
    }

}
