@import url('https://fonts.googleapis.com/css2?family=Exo+2&family=Montserrat&display=swap');

*{
  margin: 0;
  padding: 0;
  border: 0; 
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ----------Form------------ */

#register_bg {
  background: url("../images/bg4.jpeg")no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
}

#logout_bg {
  background: url("../images/bg3.jpeg")no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
}

#signup_bg {
  background: url("../images/bg2.jpeg")no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
}

#login_bg {
  background: url("../images/bg1.jpeg")no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 100vh;
}

.login-form,
.login-form * {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.signup-form,
.signup-form * {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.login-form {
    margin-top: 12vh;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background-color: #fffbf5;
}

.signup-form {
    margin-top: 5vh;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background-color: #fffbf5;
}

.grid {
    display: inline-grid;
    grid-template-columns: auto auto ;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    margin-left: 1.6rem;
    margin-right: 1rem;
  }

  .grid_2 {
    display: inline-grid;
    grid-template-columns: auto auto ;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    margin-left: 4.5rem;
    margin-right: 1.2rem;
  }
  
  .brand {
    text-align: center;
    font-family: 'Exo 2', sans-serif;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 1rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    color: #FFA800;
  }

  #logo {
    background: transparent;
    width: 3.4rem;
  }

  #warning {
    background: transparent;
    width: 4.2rem;
    display: block;
    margin: 2px auto 20px auto;
  }

.login-form__content {
    padding: 30px;
    background: #eeeeee;
}

.login-form__header {
    margin-bottom: 15px;
    text-align: center;
    color: #333333;
}

.title__header {
  font-family:'Exo 2', sans-serif;
  margin-top: 7px;
  margin-bottom: 45px;
  font-size:27px;
  font-weight: bold;
  text-align: center;
  color: #365f79;
}

.login-form__input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 2px solid #dddddd;
    background: #ffffff;
    outline: none;
    transition: border-color 0.5s;
}

.login-form__input:focus {
    border-color: #4747f2;
}

.login-form__input::placeholder {
    color: #aaaaaa;
}

.login-form__button {
    padding: 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    background: #4747f2;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 100px;
    cursor: pointer;
}

.login-form__button:active {
  background-color: #c0bfbf;
    color: #3f3f3f;
}

.backhome__button {
  margin-top: 11px;
  padding: 6px;
  color: #4747f2;
  font-weight: bold;
  width: 100%;
  border: solid 1px #4747f2;
  outline: none;
  border-radius: 100px;
  cursor: pointer;
}

.backhome__button:hover {
  color: #4747f2;
  background: #eaf5fd;
}

.login-form__links {
    margin-top: 15px;
    text-align: center;
}

.login-form__link {
    margin-top:20px;
    margin-bottom:15px;
    padding-bottom:5px;
    font-size: 0.9em;
    text-decoration: none;
}

.login-form__link2  {
    margin-top:42px;
    margin-bottom:5px;
    padding-bottom:5px;
    font-size: 0.9em;
    text-decoration: none;
}

.login-form__link a {
    color: #333333;
}

.login-form__link2 a {
    color: #333333;
} 

 #signup_link {
    font-weight: 600;
    color: #ff8800;
}


/* Check-Box */

.cont{
    display: inline-block;
    position: relative;
    padding-left: 35px;
    padding-top: 3px;
    margin-top: 25px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .cont .ina {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background-color: #c5c4c4;
  }
  
  .cont:hover .ina ~ .checkmark {
    background-color: #ff8800;
  }
  
  .cont .ina:checked ~ .checkmark {
    background-color: #4848f3;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .cont .ina:checked ~ .checkmark:after {
    display: block;
  }
  
  .cont .checkmark:after {
    left: 9px;
    top: 6px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }