
@import url('https://fonts.cdnfonts.com/css/montserrat');
body {
    font-family: 'Montserrat', sans-serif !important;
    margin: 0;
    padding: 20px;
    color: #333;
}



h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin: 1rem 0;
}
  
.step-item {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
min-width: 100px;
margin-bottom: 1.5rem;
}

.step-item:not(:last-child)::after {
content: '';
position: absolute;
top: 25px;
left: calc(50% + 25px);
width: calc(100% - 50px);
height: 3px;
background-color: #e5e7eb;
z-index: 0;
}

.step-item.active:not(:last-child)::after {
background-color: green;
}

.step-circle {
transition: all 0.3s ease;
}

.step-inactive .step-title {
color: #6b7280;
}

.step-content {
display: none;
}

.step-content.active {
display: block;
}

.step-item.line-break::after {
    display: none !important;
}


h2 {
    font-size: 28px;
    margin-bottom: 30px;
}
.form-container {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.option-container {
    margin-bottom: 15px;
}
.radio-button {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
}
label {
    font-size: 16px;
    vertical-align: middle;
    cursor: pointer;
}
.description {
    font-style: italic;
    color: #666;
    margin-left: 30px;
}
.button-container {
    margin-top: 30px;
    display: flex
;
    justify-content: space-evenly;
    width: 70%;
    float: right;
    /* margin-right: */
}
 #next-button{
    margin-right: 30px;

}
#previous-button{
    margin-left: 800px;
} 

form {
    width: 100%;
    margin: auto;
}
.button {
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border: none;
}
.button-primary {
    background-color:  #295a3c;
    color: white;
}
.button-secondary {
    background-color: #c0392b;
    color: white;
}
.info-icon {
    color: #e74c3c;
    font-size: 20px;
    vertical-align: middle;
    margin-left: 5px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}
/*menu*/
.menu-container {
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}
.logo {
    width: 200px;
    height: auto;
    margin-right: 20px;
}
nav {
    flex-grow: 1;
}
.menu {
    display: flex;
    list-style-type: none;
    padding: 0;
}
.menu-item {
    padding: 15px 20px;
    font-size: 30px;
    font-weight: 500;
    color:  #295a3c;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.menu-item:hover {
    background-color: #f5f5f5;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: #f5f5f5;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown .menu-item::after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
}
.active {
/*            border-bottom: 3px solid #0078d4;*/
    margin-bottom: -2px;
}
/*file*/


.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Choisir un fichier';
    display: inline-block;
    background: #f2f2f2;
    border: none;
    padding: 10px 20px;
    outline: none;
    white-space: nowrap;
    color: #b02d1f;
    font-weight: bold;
    border-radius: 0 6px 6px 0;
}

.custom-file-input:hover::before {
    background-color: #eaeaea;
}



#footer-container {
	width: 866px;
	position: relative;
	left: 8px;
	padding: 2px 0px 10px 0px;
	background-color: #D4D4D4; /* light grey*/
}
.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 50;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
 

  .dropdown {
    position: relative;
  }