/* Import Google font - Poppins */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); */
/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} */

.formContainer{
  height: 100vh;
  width: 100%;
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  column-gap: 30px;
}

@media (max-width: 768px) {
  .formContainer {
    column-gap: 0px;
  }
}

.form{
  position: absolute;
  max-width: 430px;
  border-style: ridge;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 6px;
  background: #FFF;
}
.container .registration{
  display: none;
}

.container .form{
  padding: 2rem;
}
legend {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

legend2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;

  text-align: center;
}

.form input, select{
   height: 50px;
   width: 100%;
   padding: 0 15px;
   font-size: 17px;
   margin-bottom: 1.3rem;
   border: 1px solid #ddd;
   border-radius: 6px;
   outline: none;
}


select {
 background-color: white;
 color: #777777;
}

.form input:focus{
   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.form a{
  font-size: 16px;
  color: #2f1664;
  text-decoration: none;
}
.form a:hover{
  text-decoration: underline;
}
.form input.button{
  color: #000;
  background: #ffbe22 ;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button:hover{
  background: #fac341;
}
.signup{
  font-size: 14px;
  text-align: center;

}
.signup label{
  color: #2f1664;
  cursor: pointer;
}
.signup label:hover{
  text-decoration: underline;
}
.signin_form{
  padding-top: 14px;
  justify-content: left;
  align-items: flex-start;
  justify-content: left;
  align-items: left;
  text-align: left;

}
.signin_form a
{
  font-size: 10px;

}

.modal {
  display: none;  /* Hidden by default */
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
  padding-top: 60px;
  
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 400px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.btn-group {
  display: flex;
  justify-content: space-between;
}

button {
  font-family: 'Calibri', sans-serif;
  font-size: 0.9rem;
  background-color: rgb(255, 201, 63);
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 8px;
  margin: 5px;
  width: 80%;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.media-options{
  display: flex;
  align-items: center;
  justify-content: left;
}

/* 
img.google-img{
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
} */
img.google-img{
  position: absolute;
  height: 30px;
  width: 30px;
  margin-left: 20px;
  object-fit: cover;
  margin-top: 5px;
}
/* a.google{
  border: 1px solid #CACACA;
}
a.google span{
  font-weight: 500;
  opacity: 0.6;
  color: #232836;
} */

.line{
  position: relative;
  height: 1px;
  width: 100%;
  margin: 0;
  margin-bottom: 24px;
  background-color: #d4d4d4;
}

.form input.button_google{
  color: #2d2d2d;
  background: #fff;
  font-size: 1rem;
  border: line  #2f1664;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button_google:hover{
  background: #d5d5d5;
}

.form input.password_input{
  margin-bottom: 0px;
}
