:root {
    --couleur-primaire: #90b2ca;
    --couleur-secondaire: #527287;
    --jaune-primaire: #ffd783;
    --couleur-erreur: #e74c3c;
    --couleur-fond: #f5f5f5;
}
/*=== Typography ===*/
/*--  Poppins font  --*/
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Joy, sans-serif";
  src: url("../fonts/joy/ThanksgivingJoy.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

h1
{
  font-family: "Joy, sans-serif";
  letter-spacing: 0.03rem;
  color: var(--couleur-primaire);
  margin: 5px;
}

h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.03rem;
  color: var(--couleur-secondaire);
}

.mn-login-wrapper {
  max-width: 530px;
  height: 100%;
  margin: 0 auto 0;
}
.mn-login-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mn-login-wrap a {
    color: #4DB347;      /* prend la couleur du texte parent */
    text-decoration: none;
}
.mn-login-wrapper .mn-login-fp {
  margin-top: 5px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mn-login-wrapper .mn-login-container {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.mn-login-form {
  width: 100%;
}
.mn-login-form form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
align-items: center;
}
.mn-login-form label {
  width: 100%;
    text-align: center;
  margin-bottom: 10px;
  color: #313b50;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.mn-login-form input {
  height: 50px;

    width: 60%;
  margin-bottom: 24px;
  padding: 0 15px;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  font-size: 14px;
  outline: none;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-wrap + .mn-login-wrap input {
  margin-bottom: 15px;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-fp label {
  margin-bottom: 0;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-fp label a {
  color: #777;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-fp label a:hover {
  color: #3a4ee5;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn {
  margin-top: 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn button {
  padding: 8px 15px;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn button span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #313b50;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn button:hover span {
  color: #fff;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn span {
  color: #777;
  font-size: 14px;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn span a {
  color: #313b50;
  font-weight: 600;
}
.mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn span a:hover {
  color: #3a4ee5;
}

/* Responsive Login CSS */
@media only screen and (max-width: 991px) {
  .d-n-991 {
    display: none;
  }
  .mn-login-content {
    max-width: 530px;
    margin: 0 auto 0;
  }
  .mn-login-content .mn-login-box {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .mn-login-content {
    padding: 30px;
  }
  .mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mn-login-wrapper .mn-login-container .mn-login-form .mn-login-btn > span {
    margin-bottom: 15px;
  }
  .mn-login-wrapper .mn-login-container .mn-login-form .mn-login-fp label a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 320px) {
  .mn-login-wrapper .mn-login-fp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mn-login-wrapper .mn-login-fp .mn-remember {
    margin-bottom: 10px;
  }
}

.my_btn{
  display: inline-block;
  min-height: 35px;
  min-width: 150px;
  background-color: #ffd783;
  width: auto;
  color: #313b50;
  border: none;
  cursor: pointer;
  margin-right: 1px;
  border-radius: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
  text-align: center;
}

.my_btn:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 131, 0.5);
}

.my_btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}

.my_btn:hover{
  background-color: #ffd783;
}

.my_btn:active{
  background-color: #ffd783;
}

.page_title{
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    font-family: "Joy, sans-serif";
    color: var(--couleur-primaire);
}
.switch-container{
    padding: 10px;
}

.pict_evt{
    width: 100%;
    text-align: center;
}

.pict_evt img{
    width: 100%;
}


.page_time{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    font-family: "Joy, sans-serif";
    color: var(--couleur-secondaire);
}

.shedule_header_info{
    text-align: center;
}
.registering_info{
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
    color: white;
    display: none;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 900;
    pointer-events: none;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}

.focus {
    position: relative;
    z-index: 901;
}
