body{
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-style: normal; 
    font-variant: normal;
    line-height: 23px;
}
.container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h1{ 
    font-size: 23px; 
    font-weight: 700; 
}
h3 {
    font-size: 17px;
    font-weight: 700;
} 
p {  
    font-size: 14px;
    font-weight: 400;
}

form{
    margin-bottom: 0.5rem;
}

.drop-area{
    border: 2px dashed #ccc; 
    padding: 40px;
    color: #6a6a6a;
    user-select: none;
}
.drop-area:hover{
    background-color: #fafafa;
    color: #898989;
}

.BaserowConnexion{
    display: flex;
    flex-wrap: wrap;
}
.BaserowConnexion button{
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #ccc;
    padding: 3px;
}
.BaserowConnexion button:hover{
    background-color: #dadada;
}

.flash-messages{
    width: 80%;
    border-radius: 8px;
    text-align: left;
    line-height: 1.4;
}
.flash.success{
    background-color: #dfffca;
    border-left: 4px solid #39fa32;
}
.flash.error{
    background-color: #ffcaca;
    border-left: 4px solid #fa3232;
}
.flash.warning{
    background-color: #fffbca;
    border-left: 4px solid #faed32;
}