body{
    background: #f5f5f7;
}

.hide{
    display: none !important;
}

button:hover{
    transform: scale(1.01);
    transition-duration: 200ms;
}

a{
    text-decoration: none;
    color: black;
}

a:hover{
    color: rgb(170, 197, 255);
}

.container{
    height:auto;
    padding: 1em;
    background: #f5f5f7;
    top:50%;
    left:50%;
    text-align: center;
    overflow:hidden;
    padding: 1em;
    padding-left:2em;
}

.returnError{
    height: fit-content;
    padding: 1em;
    text-align: center;
}
.returnError p{
    animation: showElement;
    animation-duration:300ms;
}
.returnError p.hideError{
    animation: hideElement;
    animation-duration:300ms;
    opacity: 0;
}


/* Bouton */
.btn{
    font-weight: bold;
}
.btn:hover{
    transform: scale(1.02);
    transition-duration: 200ms;
}
button.noBackground{
    background: unset !important;
}

.loading {
    color: transparent;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Couleur background */

.green {
    background: #33e24a !important;
}
.red {
    background: #EF3054 !important;
}
.clearRed {
    background: #fdbcbc !important;
}
.blueGreen {
    background: #33e2d3 !important;
}
.yellow {
    background: #e2c233 !important;
}
.pink {
    background: #e23380 !important;
}


/* Couleur text */
.error{
    color : red !important;
}
.whiteText {
    color: #ffffff !important;
}
.greenText {
    color: #33e24a !important;
}
.darkGreenText {
    color: #2d9f32 !important;
}
.blueGreenText {
    color: #33e2d3 !important;
}
.blueText {
    color: #003e60 !important;
}
.yellowText {
    color: #e2c233 !important;
}
.orangeText {
    color: #faac5e !important;
}
.redText {
    color: #EF3054 !important;
}
.pinkText {
    color: #e23380 !important;
}