@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*alerte box*/

.alerte {
    max-width: 300px;
    padding: 15px 25px;
    position: absolute;
    top: 15px;
    right: 15px;
    transform: translateX(200%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: none;
    border-radius: 15px;
    background-color: rgb(162, 33, 33);
    transition: all 0.5s;
}

.cross-alerte {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.alerte h2 {
    padding-right: 40px;
    word-wrap: break-word;
    font-family: Roboto;
}

.show {
    transform: translateX(0px) !important;
    transition: all 0.5s;
}

/*profil img section*/

.labelfile {
    cursor: pointer;
    position: relative;
}

#file {
    display: none;
}

.fileImg {
    height: 100px;
    width: 100px;
    border-radius: 100%;
}

.burl-svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    backdrop-filter: blur(1.5px);
}

.burl-svg svg {
    opacity: 0.8;
}

/*form section*/

form {
    margin-top: 20px;
}

form input[type="text"] {
    border-radius: 10px;
    background: #224957;
    border: none;
    padding: 15px 35px;
    width: 200px;
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 17px;
    font-weight: 400;
    outline: none;
}

form input[type="text"]::placeholder {
    color: #FFF;
}

form input[type="email"] {
    margin-top: 0;
}