/* desktop screen  */ 
@media only screen and (min-width: 981px) {

  * {
    margin: 0;
    padding:0;
  }

  html { 
    background: url(/CSS/background1.jpeg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: sans-serif;
    height: 100%;
  }

  body{
    height: 100%;
  }

  input{
    outline: none;
  }

  .error{ /* error msg */ 
    text-align: left;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #8c0900;
    background-color: #ffdddd; 
  }

  .form_container { /* white background */
  width: 250px;
  height: auto;
  padding: 20px 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 9px 0 #000;
  margin: auto;
  }

  .form_container h4 {
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 8px;
    height: 40px;
  }

  .main{ /* content in container */
  text-align: center;
  }

  .main input[type=Text] , input[type=password] {
    width: 220px;
    height: 10px;
    text-align: left;
    padding: 8px 0px;
    border: none;
    margin: 7px;
    border-bottom: 1px solid #4a4a4a;
  }

  .astext{ /* "Wachtwoord vergeten?" */ 
  border: none;
  color: #2424ab;
  font-size: 9.5px;
  float: right;
  margin-top: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  }

  /* captcha */
  #g-recaptcha-response {
      display: block !important;
      position: absolute;
      margin: -78px 0 0 0 !important;
      width: 302px !important;
      height: 76px !important;
      z-index: -999999;
      opacity: 0;
  }

  .g-recaptcha {
    margin-top: 15px;
    transform: scale(0.78);
    -webkit-transform:scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }


  /* submit button  */
  .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  .button {
    width: 180px;
    height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #a7b9c4;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }

  .button:hover {
    background-color: #007ab8;
    box-shadow: 0px 15px 20px rgba(76, 89, 98, 0.89);
    color: #fff;
    transform: translateY(-7px);
  }


}



















/* phone screen */

  * {
    margin: 0;
    padding: 0;
  }


  html { 
    height: 100%;
    background: url(/CSS/background1.jpeg) no-repeat  fixed;
    font-family: sans-serif;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

body{
    height: 100%;
}

input{
    outline: none;
}

.error{ /* error msg */ 
    text-align: left;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #8c0900;
    background-color: #ffdddd; 
}

  .form_container { /* white background */
  width: 250px;
  height: auto;
  padding: 20px 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 7px 0 #000;
  margin: auto;
  }

  .form_container h4 {
    color: #4a4a4a;
    font-family: sans-serif;
    text-align: center;
    margin-bottom: 8px;
    height: 40px;
  }



  .main{ /* content in container */
  text-align: center;
  }

  .main input[type=Text] , input[type=password] {
    width: 220px;
    height: 10px;
    text-align: left;
    padding: 8px 0px;
    border: none;
    margin: 7px;
    border-bottom: 1px solid #4a4a4a;
  }

  .astext{ /* "Wachtwoord vergeten?" */ 
  border: none;
  color: #2424ab;
  font-size: 9.5px;
  float: right;
  margin-top: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  }

  /* captcha */
  #g-recaptcha-response {
      display: block !important;
      position: absolute;
      margin: -78px 0 0 0 !important;
      width: 302px !important;
      height: 76px !important;
      z-index: -999999;
      opacity: 0;
  }

  .g-recaptcha {
    margin-top: 15px;
    transform: scale(0.78);
    -webkit-transform:scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }


  /* submit button  */
  .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  }

  .button {
    width: 180px;
    height: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #a7b9c4;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
  }

  .button:hover {
    background-color: #007ab8;
    box-shadow: 0px 15px 20px rgba(76, 89, 98, 0.89);
    color: #fff;
    transform: translateY(-7px);
  }


