/*
  But :     
  Auteur : Tiago + Lopes
  Date :   01.06.21 / V1.0
*/

@font-face {
  font-family: marvelfont;
  src: url(../fonts/MarvelRegular-Dj83.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: marvelfont;
}

html {
  background-image: url(../images/background.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.container {
  max-width: 500px;
  padding: 0 20px;
  margin: 170px auto;
}

::selection {
  background: rgb(243, 203, 24);
}

.wrapper {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.wrapper .title {
  height: 90px;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 45pt;
  letter-spacing: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pour aligner les champs du formulaire */

.row label {
  display: inline-block;
  width: 10em;
  color: white;
  font-size: 20pt;
}

.g-recaptcha {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form {
  padding: 30px 25px 25px 25px;
}

.wrapper form .row {
  height: 30px;
  margin-bottom: 60px;
  position: relative;
}

.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 10px;
  border-radius: 3px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}

.wrapper form .pass {
  margin: -8px 0 20px 0;
}

.wrapper form .pass a {
  color: #ffc400;
  font-size: 17px;
  text-decoration: none;
}

.wrapper form .pass a:hover {
  text-decoration: underline;
}

.wrapper form .button input {
  margin-top: 15px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding-left: 0px;
  background: #ffc400;
  border: 1px solid #ffc400;
  cursor: pointer;
}

form .button input:hover {
  background: #daaa0d;
}

.wrapper form .signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}

.wrapper form .signup-link a {
  color: #ffc400;
  text-decoration: none;
}

form .signup-link a:hover {
  text-decoration: underline;
}

.btnSave {
  margin-top: 15px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding-left: 6px;
  padding-right: 6px;
  background: #3ae448;
  border: 1px solid #3ae448;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid lightgrey;
}

.btnReturn {
  margin-top: 15px;
  margin-left: auto;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding-left: 6px;
  padding-right: 6px;
  background: #f54a3e;
  border: 1px solid #f54a3e;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid lightgrey;
}

.btnsS_R {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------------------------------*/

