@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body, p, img,div, a, dl, dt, dd, form, fieldset, h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
	color: #000000;
  font-family: 'Inter';
  font-size: 20px;
  font-weight: normal;
  line-height : 1.3;
}

/* Style form newsletter hors trace */

.nods-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;   
}

.nods-form .row{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 24rem;
}

.nods-form .champ .input_zone{
  display: flex;
}

.nods-form .champ input{
  font-size: 16px;
  height: 3.5rem;
  width: 100%;
  border-radius: 50px;
  padding: 0 2rem;
  border: 1px solid rgb(38 38 38 / 0.3);
  background: transparent;
}

.nods-form .check{
	display: flex;
  align-items: center;
  gap: 0.5rem
}

.nods-form .check label{
	display: none;
}

.nods-form .check .icheckbox_square{
	background: transparent;
  border: 1px solid #262626;
  border-radius: 4px;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.nods-form .check .icheckbox_square:hover::after, .nods-form .check .icheckbox_square.checked::after{
  content: '✓';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  background: #626262;
  color: #FFF;
  font-size: 1rem;
  cursor: pointer;
}

.nods-form .check .field-footer, .nods-form .check .field-footer a {
	font-size: 12px;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}

.nods-form .check .field-footer a:hover{
  color: rgb(38 38 38 / 0.7);
}

.nods-form .submit_zone input{
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  height: 3.5rem;
  padding: 0 2rem;
	background: #262626;
  color: #FFF2A6;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

.nods-form .submit_zone input:hover{
  background: #EDEDED;
  color: #262626;
}

@media screen and (min-width: 601px){
  .nods-form{
    justify-content: center
  }
}