/* .bodyBackgroud{
    margin: 0 auto;
    width: 100%;
} */
*{
    font-family: 'Poppins',sans-serif;
    color: #000;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
.imgBox{
  width: 460px;
  float: left;
}

.imgBox img{
  width: 100%;
}

.loginBox{
  width: 380px;
  padding: 10px;
  float: right;
}
.loginForm {
    height: 390px;
    width: 890px;
    background-color: rgba(242,242,242);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 2px 2px 6px #ddd;
    padding: 50px 35px;
}



.loginForm h3{
    font-size: 48px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
    margin: 30px 0;
}
p {
  font-size: 12px;
  color: #ff0000!important;
  margin: 10px 0;
  text-align: center;
}
.loginLabel{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
.loginInput{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(0,0,0,0.07);
    border-radius: 100px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    padding-left: 10px;
    text-indent: 10px;
}

.loginButton{
    font-weight: bold;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
}

.loginMenu{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap:nowrap;
  column-gap: 10px;
}
.modal {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  display: none;

  background-color: rgba(0, 0, 0, 0.4);
}

.modal.show {
  display: block;
}

.modal_body {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 500px;
  height: 300px;

  padding: 15px;

  text-align: center;

  background-color: rgba(242,242,242);
  border-radius: 10px;
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);

  transform: translateX(-50%) translateY(-50%);
}
.modalHead{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #000;
}
.headTitle{
  font-size: 20px;
}
.modalClose{
  font-size: 20px;
  cursor:pointer;
}

.description{
  font-size: 16px;

}
.modalContent{
  display: flex;
    text-align: center;
    /* margin: 0 auto; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width:600px) {
  .loginForm {
      height: 390px;
      width: 250px;
  }

  .imgBox{
    display: none;
  }

  .loginBox{
    width: 240px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .description{
    text-align: left;
  }
}
