@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*font-family: 'Lexend Deca', sans-serif;*/

/*alerte box*/



/*default*/

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F0F0F0;
    overflow: hidden;
}

/*return section*/

.div-return {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 10px;
    margin-left: 10px;
    border: 2px solid #224957;
    padding: 5px 5px;
    border-radius: 100%;
    cursor: pointer;
}

.div-return svg {
    transform: translateX(-2px);
}

/*title*/

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

section h1 {
    color: #224957;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
}

section h3 {
    color: #224957;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 30px;
}

/*form section*/

form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

form input[type="email"] {
    margin-top: 20px;
    border-radius: 10px;
    background: #224957;
    border: none;
    padding: 15px 35px;
    width: 200px;
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 17px;
    font-weight: 400;
    outline: none;
}

form input[type="email"]::placeholder {
    color: #FFF;
}

form input[type="password"] {
    border-radius: 10px;
    background: #224957;
    border: none;
    padding: 15px 35px;
    width: 200px;
    color: #FFF;
    font-family: "Lexend Deca";
    font-size: 17px;
    font-weight: 400;
    outline: none;
}

form input[type="password"]::placeholder {
    color: #FFF;
}

/*checkbox*/
  .checkbox-wrapper-39 *,
  .checkbox-wrapper-39 *::before,
  .checkbox-wrapper-39 *::after {
    box-sizing: border-box;
  }

  .checkbox-wrapper-39 label {
    display: block;
    width: 35px;
    height: 35px;
    cursor: pointer;
  }

  .checkbox-wrapper-39 input {
    visibility: hidden;
    display: none;
  }

  .checkbox-wrapper-39 input:checked ~ .checkbox {
   transform: rotate(45deg);
   width: 14px;
   margin-left: 12px;
   border-color: #24c78e;
   border-top-color: transparent;
   border-left-color: transparent;
   border-radius: 0;
  }

  .checkbox-wrapper-39 .checkbox {
    display: block;
    width: inherit;
    height: inherit;
    border: 3px solid #434343;
    border-radius: 6px;
    transition: all 0.375s;
  }

  /*THANKS to https://getcssscan.com/css-checkboxes-examples id="39"*/

.form-option-remember {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.isPermLabel {
    color: #093545;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-option a {
    color: #000;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

form input[type="submit"] {
    border-radius: 10px;
    background: #00B6F0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    border: none;
    padding: 15px 35px;
    color: #FFF;
    text-align: center;
    font-family: "Lexend Deca";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    text-transform: capitalize;
    cursor: pointer;
}

form input[type="submit"]:active {
    scale: 0.95;
    transition: all 0.2s;
}

@media screen and (max-width: 500px) {
    .isPermLabel {
        font-size: 16px;
    }
    
    .form-option a {
        font-size: 16px;
    }
}