body {
  background-color: #f2f3f7;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;

}

a:active {
  color: #0000ee;
}

.main, .main-form {
	position: absolute;
	margin: 0;
	left:50%;
}
.main {
 	 top: 50%;
  	transform: translate(-50%, -50%);
}

.main-form {
  	top:0%;
    transform: translate(-50%, 0%); 
}

.content {
  display: flex;
  flex-direction: column;
  background-color: #e1e3f2;
  max-width: 85%;
  padding-top: 1em;
  padding-bottom: 2em;
  padding-right: 2em;
  padding-left: 2em;
  border-radius: 4px;
}

.background-left {
	position: absolute;
	left: 0%;
	width: 50%;
	height: 100%
}

.background-right {
	position: absolute;
	right: 0%;
	width: 50%;
	height: 100%;
}

.text-container {
	margin: 10% 0 0 8%;
	font-size: 22.5px;
	font-weight: bold;
	color: #5d44c9;
}

.text-container p {
	width: 55%;
}

.presentation-produit-list {
	font-size:22px;
	width:50%;
	list-style: none;
	position: absolute;
    top: 25%;
	
}

.presentation-produit-list  li {
	padding-bottom : 30px;
	margin: 1.5em 0;
    position: relative;
}

.presentation-produit-list li::before {
	content: " ";
    background-size: cover;
    background-image: url('../img/check.svg');
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    left: -2em;
    top: calc(50% - 30px);
    filter : invert(26%) sepia(51%) saturate(2963%) hue-rotate(238deg) brightness(88%) contrast(88%);
}


.img-background {
	width: 100%;
	height:100%;
	object-fit: cover;
	opacity: 0.3;
}

.logo-background {
	position: absolute;
    bottom: 5px;
    width: 60%;
    left: 10px;
}


form[name=resetPwdForm]{
	width: 70%;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-right {
  display: flex;
  justify-content: flex-end;
}

.flex-left {
	display: flex;
	justify-content: flex-start;
}

.logo-oaw {
  width: 90%;
}

.logo-oaw-bo {
	display: flex;
    justify-content: flex-end;
    margin-top: -50px;
    font-weight: bold;
    height: 50px;
}


.input-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.input {
  width: 65%;
  height: 4em;
  padding: 12px 10px;
  margin: 1.25em 0;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 4px;
  background-color: inherit;
}

.small-space {
  margin-bottom: 0.25em !important;
  margin-top: 0.25em !important;
}

.label {
  display: flex;
  justify-content: flex-end;
  text-align: end;
  flex: 1 1 100%;
  max-width: 32%;
}

.required:after {
  color: red;
  content: "*";
  margin-left: 0.1em;
}

.button {
  cursor: pointer;
  color: white;
  border: none;
  outline: none;
  background-color: #5d44c9;
  border-radius: 20px;
  line-height: 30px;
  padding-left: 10px;
  padding-right: 13px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-top: 1em;
  font-weight: bold;
}

.button-cancel {
  background-color: #d3cbf9;
  color: #7153ef;
  margin-right: 0.5em;
}

.forget-password {
  margin-top: 1.5em;
  font-size: 0.9em;
}

.forget-text {
  max-width: fit-content;
  text-align: justify;
  line-height: 1.25em;
  margin-top: 2em;
}

.popin-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}

.popin {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
}

.medecin-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  justify-content: space-between;
}

.radio-button {
  margin-bottom: 1em;
  padding: 15px 10px;
  background-color: #e1e3f2;
  box-shadow: inset 0px 3px 0px #d3cbf9;
  width: 225px;
  border: none;
  opacity: 0.5;
  border-radius: 5px;
}

.radio-button-checked {
  background-color: #d3cbf9;
  opacity: 1;
  box-shadow: inset 0px -3px 0px #7153ef;
}

.radio-button-input {
  display: none;
}

.radio-button-label {
  cursor: pointer;
  overflow-wrap: break-word;
  color: #5d44c9;
  font-weight: bold;
  font-size: 14px;
}

.ellipsis-label {
  width: 225px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.password-update-form {
  padding: 0.5em;
}

.password-rules {
  margin-top: 1em;
  margin-bottom: 2em;
}

.password-rules-ul {
  list-style-type: none;
}

/* ----------- SNACKBAR ----------------------------- */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

#snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

#smsContactContainer {
  width: 99%;
  height: 99%;
  position: absolute;
  visibility: hidden;
  display: none;
  background-color: rgba(22, 22, 22, 0.5);
}

.sms-contact-modal {
  background: white;
  margin: 0 auto;
  width: 400px;
  position: relative;
  z-index: 41;
  top: 37%;
  padding: 10px 30px 20px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
}

.sms-contact-infos {
  font-size: 15px;
}

.sms-contact-modal .button {
  width: 60px;
  margin-left: 350px;
}

.sms-contacts {
  padding-left: 30px;
}

.otp-regen {
  margin-bottom: 1.5em;
  margin-top: -10px;
  font-size: 0.9em;
  display: flex;
  justify-content: flex-end;
}

.otp-pref_change a {
  color: blue;
}

.otp-ou {
  margin-top: 12px;
  font-weight: bold;
  margin-left: 150px;
}

.logo-navigateur {
  width: 80px;
}

.nav-content {
  display: flex;
  flex-direction: column;
  background-color: #e1e3f2;
  padding-top: 1em;
  padding-bottom: 2em;
  padding-right: 2em;
  padding-left: 2em;
  width: 800px;
}

.nav-logo {
  width: 380px;
}

.nav-infos {
  text-align: center;
}

.navigateurs {
  margin-top: 40px;
}

.nav-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 40px;
  margin-right: 40px;
  cursor: pointer;
}

.nav-info span {
  text-align: center;
  margin-top: 5px;
}

.code-otp {
  margin-top: 0.75em;
}

.font-14-px {
  font-size: 14px;
}

#visibility, #confirm_visibility {
    position: absolute;
    right: 10px;
    cursor: pointer;
}