@import url("../../common/css/navbar.css");
@import url("../../common/css/footer.css");

/* static/css/styles.css */
dl, ol, ul {
    margin-top: revert;
    margin-bottom: revert;
}


html {
   min-height: 100vh;
   position: relative;
}

body {
    background-color: var(--background-color);
    height: 100%;
}


.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px; /* Assure un espace uniforme entre les champs */
    border: 1px solid #ced4da; /* Bordure classique */
    border-radius: 4px; /* Coins arrondis pour un design cohérent */
    box-sizing: border-box; /* Inclus le padding et la bordure dans la largeur totale */
    min-height: 48px;
}



.container {
    max-width: 900px;
    min-height: 75vh;
    display: flex;
    justify-content: center; /* Centre horizontalement */
    padding: 60px;
    flex-direction: column;
    margin-bottom: 75px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 10px;
}

.footer-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;

}

.form-check {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.form-check-label {
    margin-left: 5px;
    line-height: 1.5;
}

.form-check-input {
    margin-top: 4px;
    margin-right: 10px;
}

.text-danger {
    color: #dc3545;
    font-size: 0.8rem;
}


.required {
    color: red;
    margin-left: 5px;
}


.btn-custom {
    background-color: #1777b8;
    border-color: #1777b8;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .btn-custom:hover {
    background-color: #135d8c; /* un peu plus foncé au hover */
    border-color: #135d8c;
    color: white;
  }
  