#loginPage{
    background: url(/img/homepage/backgrounds/01.jpg); 
    height: 98vh;
    background-size: cover !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  #loginDIV{
    position: absolute;
    border: 1px solid;
    padding: 20px;
    margin: 7%;
    background-color:white;
    border-radius: 10px;
    text-align: center;
    width: 80%;
  }

  #loginDIV input,button,a{
      width: 90%;
      padding: 5px;
      font-size: 18px;
      margin: 5px 0px;
  }
  #loginDIV a{
    cursor: pointer;
    font-size: 12px;
    color:blue;
  }
  #loginDIV h1{
    font-size: 31px;
    text-align: center;
  }
  #loginDIV button{
    cursor: pointer;
  }

  #logo{
    cursor: pointer;
    border: 1px solid black;
    padding: 5px;
    display: inline;
    border-radius: 5px;
    background-color: white;
  }
  div#loginTypes {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
  #loginTypes .mainBtn{
      cursor: pointer;
    padding: 5px 50px;
    border-radius: 5px;
    border: 1px solid black;
    margin: 5px;
    box-shadow: inset 0px 0px 5px black;
  }
  #loginTypes .mainBtn.active{
      background-color: yellow;
      box-shadow: inset 0px 0px 5px rgb(223, 153, 3), 0px 0px 5px rgb(249, 252, 87), 0px 0px 10px rgb(249, 252, 87), 0px 0px 15px rgb(249, 252, 87);
  }
  .userFormWrapper{
    display: grid;
    grid-template-columns: 100px auto;
  }

  .hidden{
      display: none;
  }
  #popupBackdrop{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color:#e6e6e67d;
    top: 0;
    left: 0;
  }
  
  #popupContent{
    position: absolute;
    top: -50px;
    display: block;
    width: 70%;
    height: fit-content;
    max-height: 90%;
    overflow-y: auto;
    background-color: white;
    border-radius: 10px;
    margin: 8.5% 15%;
    padding: 10px;
    border: 1px solid black;
  }
  #userForm{
    padding: 10px;
  }
  #userForm table{
    width: 100%;
    padding: 10px;
  }
  #userForm input, select{
    width: 100%;
    width: calc(100% - 7px);
    padding: 5px;
    font-size: 15px;
  }
  #userForm textarea{
    width: calc(100% - 15px);
    min-height: 50px;
    border:1px dotted black;
    padding: 10px;
    font-size: 15px;
  }
  .formBtn{
    width: 100%;
    padding: 3px;
    font-size: 18px;
    margin: 3px 0px;
    background-color: orange;
    border-radius: 5px;
  }
  .userFormTitle {
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
    margin: 3px 0px;
  }
  
#closeLogin{
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

#closeLogin:hover{
  color:red;
}

div#loginTypes {
  display: grid;
  grid-template-columns: 50% 50%;
}

.mainBtn  .jpText {
  font-size: 14px;
}
.mainBtn  .engText {
  font-size: 28px;
}
.socialWrapper {
  display: flex;
  justify-content: space-evenly;
}
.socialBtn {
  display: grid;
  grid-template-columns: 30px auto;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px;
  background-color: #0b92dd;
  color: white;
  box-shadow: inset 0px 0px 2px black;
  cursor: pointer;
  font-size: 25px;
  font-family:  Tahoma, sans-serif;
}
.socialBtn:hover {
  background-color: red;
  box-shadow: 0px 0px 5px yellow;
}
.socialBtn .text {
  font-size: 15px;
  padding: 5px 10px;
}
.horLineWrapper{
  width: 100%; 
  height: 20px; 
  border-bottom: 1px solid black; 
  text-align: center;
  margin-bottom: 25px;
}
.horLineWrapper .text{
  font-size: 35px; 
  background-color: #F3F5F6; 
  padding: 0 10px;
  border-radius: 10px;
}
#loginOptions{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
div#welcomeTitle {
  font-size: 24px;
  padding: 10px;
}
div#welcomeSubTitle {
  font-size: 13px;
  padding: 3px 10px;
  color: darkolivegreen;
}
  @media (max-width: 700px){
    #loginDIV{
        margin: 10% 2%;
    }
    .userFormWrapper{
      grid-template-columns: auto;
    }
    .mainBtn  .jpText {
      font-size: 9px;
    }
    .mainBtn  .engText {
      font-size: 20px;
    }
    #loginTypes .mainBtn{
      padding: 5px 10px;
    }
    div#loginOptions button {
      font-size: 10px;
  }
  div#welcomeTitle {
    font-size: 18px;
    }
  }