@import url("css.css");



form {
    text-align: center;
    border-radius: 20px;
    background-color: goldenrod;
    margin: 15px;
    transition: all 1.5s ease-in-out;
}


input[type="text"],
input[type="password"] {
    background-color: black;
    width: 50%;
    height: 60px;
    border-radius: 10px;
    text-align: center;
    border: 7px solid black;
    transition: all 0.5s ease-in-out;
    color: goldenrod;


}







select {
    border: solid black 7px;
    width: 50%;
    height: 2em;
    background-color: black;
    color: goldenrod;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

input[type="submit"] {
    border: solid black 7px;
    background-color: black;
    color: goldenrod;
    width: 50%;
    font-size: 20px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

form:hover {
    border-radius: 200px;

}


input[type="text"]:hover,
input[type="password"]:hover {
    background-color: goldenrod;
    border-radius: 30px;
    color: black;
}

input[type="submit"]:hover {
    background-color: goldenrod;
    color: black;
    border-radius: 30px;
}


.invalide {
    background-color: red !important;
    border: 10px solid pink;
    border-image: repeating-linear-gradient(-55deg,
            #000,
            #000 20px,
            #ffb101 20px,
            #ffb101 40px) 10 !important;
}

.label {
    color: red;
}

.erreur-msg {
    background-color: #ff4444;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px auto;
    width: 60%;
    text-align: center;
    font-weight: bold;
}

.profil {
    text-align: center;
    padding: 40px 30px;
    background-color: goldenrod;
    border-radius: 20px;
    margin: 15px;
}

.profil-avatar {
    width: 80px;
    height: 80px;
    background-color: black;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: goldenrod;
}

.profil h2 {
    color: black;
    font-size: 32px;
    margin-bottom: 5px;
}

.profil-status {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
}

.profil-status i {
    color: #00cc00;
    font-size: 10px;
}

.btn-logout {
    display: inline-block;
    text-decoration: none;
    padding: 10px 30px;
    border: solid black 7px;
    background-color: black;
    color: goldenrod;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.btn-logout:hover {
    background-color: goldenrod;
    color: black;
    border-radius: 30px;
}

.btn-inscription {
    display: inline-block;
    text-decoration: none;
    padding: 10px 30px;
    border: solid black 7px;
    background-color: black;
    color: goldenrod;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    margin-top: 5px;
}

.btn-inscription:hover {
    background-color: goldenrod;
    color: black;
    border-radius: 30px;
}
