body{
    font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
    background-color: var(--background);
}

h1{
    font-size: xxx-large;
    text-align: center;
    color: var(--majeur);
    margin-top: 5%;
    margin-bottom: 3%;
}

.profile-container {
    background-color: var(--blanc);
    border-radius: 20px;
    padding: 30px;
    margin: 0 auto;
    max-width: 70%;
    margin-bottom: 10px;
}

.profile-info {
    margin-bottom: 10px;
}

.infos{
    margin-inline: 10%;
}

.info-row {
    display: flex;
    font-size: x-large;
    align-items: center;
}

.info-row label {
    font-weight: bold;
    color: var(--paraph);
    width: 400px;
    color: var(--paraph);
}

.info-row p {
    color: var(--paraph);
    margin-left: 5%;
}

button, .boutons {
    background-color: var(--bouton);
    color: var(--paraph);
    font-size: xx-large;
    font-weight: bold;
    min-width: 300px;
    min-height: 60px;
    width: fit-content;
    padding: 0.5% 2%;
    
    border-radius: 20px;
    border: none;
    
    cursor: pointer;
    
    text-align: center;
    
    margin-top: 20px;
    margin-inline: auto;
    
    display: block;
    
    box-shadow: 8px 8px 4px var(--ombres);
    transition: all 0.2s ease-in-out;
}

.boutons{
    text-decoration: none;
    display: inline-block;
    line-height: 60px;
}

button:hover, .boutons:hover {
    background-color: var(--majeur);
    color: var(--blanc);
    transform: translateY(-2px);
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.parametres {
    transform: scale(2);
    position: fixed;
    bottom: 60px;
    right: 60px;
    background-color: var(--bouton);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 8px var(--ombres);
    transition: all 0.2s ease-in-out;
}

.parametres:hover {
    background-color: var(--majeur);
    transform: translateY(-2px);
}

.parametres a {
    text-decoration: none;
    color: var(--paraph);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.parametres i {
    font-size: 40px;
}

.parametres a:hover i {
    color: var(--blanc);
}

.bouton{
    display: flex;
    justify-content: center;
    gap: 10px;
}

input{
    background-color: var(--champs);
    border-radius: 5px;
    min-height: 40px;
    margin-bottom: 10px;
    border: 2px solid var(--majeur);
    box-shadow: 0 4px 4px var(--ombres);
    margin-left: 10px;
}

input[type="tel"], input[type="password"] {
    width: 100%;
    max-width: 350px;
    height: 35px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 2px solid var(--champs);
    background-color: var(--champs);
    font-size: x-large;
    transition: all 0.2s ease;
    margin-bottom: 20px;
    color: var(--paraph);
}


input[type="tel"]:hover, input[type="password"]:hover {
    border-color: var(--majeur);
}

label{
    color: var(--paraph);
}
