/****************
*****GENERAL*****
*****************/


*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
    color: #333333;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top : 30px;
    padding: 16px 16px 80px 16px;
}

header {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    text-align: center;
}

p {
    font-size: 1rem;
    text-align: justify;
}

ul {
    font-size: 1rem;
    list-style-type: none;
    padding : 0;
}

a {
    color : #333333;
    text-decoration: none;
}

a:hover {
    color : #333333;
}

.btn-custom {
    color : #13EF5C;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    padding : 10px 18px;
    border-radius: 8px;
    background-color: white;
    border : 1px solid #13EF5C;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    margin : 12px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-custom:hover {
    color: white;
    background-color: #13EF5C;
    transition: 0.3s;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding : 20px;
    max-width: 600px;
    width: 100%;
}

form div {
    width: 100%;
    margin : 2px 0;
}

label {
    display: block;
    margin: 6px 0;
}

input, select, textarea {
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin : 2px 0;
    border-radius: 5px;
    color: #667085;
    border: 1px solid  #D0D5DD;
    padding: 10px 10px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
    font-weight: 400;
    font-size: 1rem;
}

input[type=checkbox] {
    height: 18px;
    width: 16px;
    box-shadow: none;
    margin-right: 20px;
}

input:focus {
    outline: none;
}

label.required:after {
    content: " *";
    font-weight: bold;
    color: #B42318;
}

form .btn-custom {
    margin-top: 20px;
}

div.messages {
    width: 100%;
    max-width: 600px;
    padding : 20px;
}
div.alert-success {
    color: #027A48;
    background-color: #D1FADF;
    padding : 8px;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

div.alert-danger {
    color: #B42318;
    background-color: #FEE4E2;
    padding : 8px;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

input[type=email] {
    background-image: url("../img/mail.svg");
    background-repeat: no-repeat;
    background-position: center left 8px;
    padding-left: 30px;
}

input[type=password] {
    background-image: url("../img/key.svg");
    background-repeat: no-repeat;
    background-position: center left 8px;
    padding-left: 30px;
}

.ul-index {
    list-style-type: circle;
}

.container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding : 0 8px;
}

.logo-societe {
    height : 160px;
    width : 160px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-delete {
    color : #B42318;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    padding : 10px 18px;
    border-radius: 8px;
    background-color: white;
    border : 1px solid #B42318;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    margin : 12px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-delete:hover {
    color: white;
    background-color: #B42318;
    transition: 0.3s;
}

.Ouvert {
    padding: 2px 8px;
    background: #ECFDF3;
    border-radius: 16px;
    font-size: 14px;
    color: #027A48;
    font-weight: 700;
}

.Terminé {
    padding: 2px 8px;
    background: #FEF3F2;
    border-radius: 16px;
    font-size: 14px;
    color: #B42318;
    font-weight: 700;
}

.Création {
    padding: 2px 8px;
    background: #FFF6ED;
    border-radius: 16px;
    font-size: 14px;
    color: #C4320A;
    font-weight: 700;
}

form ul {
    color: #B42318;
    background-color: #FEE4E2;
    padding : 8px;
    border-radius: 5px;
    font-size: 1rem;
}

.bulle-info {
    width: 100%;
    background-color: #E8F0FE;
    padding : 20px;
    margin-top: 20px;
    border: 1px solid #dadfe1;
    border-radius: 5px;
}

.bulle-info div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.bulle-info p {
    margin: 0;
}

.bulle-info img {
    margin-right: 15px;
}

.titre-bulle-info {
    font-weight: bold;
}

.no-margin {
    margin: 0 !important;
}


