/* General styles */

.background-img {
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* background-image: url('/image/uploads/client.png'); */
  background-image: url('/image/uploads/student_signup.png');
  background-size: cover;
  background-position: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 9em;
}

.signup-container,
.login-container,
.forget_pwd_container,
.resetpwd_container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  z-index: 1;
	/* border: 1px solid red; */
  position: relative;
}

.signup-container h1,
.login-container h1,
.forget_pwd_container h1,
.resetpwd_container h1{
  color: var(--color-text);
  font-size: 24px;
  font-weight: 100;
  text-decoration: none;
}

.signup-options,
.login-options,
.forget_pwd_options,
.resetpwd_options {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.signup-options a,
.login-options a {
  color: var(--color-text);
}

.google-signup,
.google-login {
	border: 1px solid rgb(168, 163, 163); 
	/* border: 1px solid red;  */
  display: flex;
  width: 70%;
  height: 35px;
  padding: 1.5px 1.5px 1.5px 5px;
  background-color: #fff;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;  
  justify-content: left;
  gap: 10px;
  border-radius:  5px 5px 5px 5px;
  transition: background-color 0.3s ease;
}

.google-signup img,
.google-login img {
  padding: 2px;
  height: 3rem;
}

.google-signup span,
.google-login span {
  text-align: center;
  padding: 6px 6px;  
}

.google-signup:hover,
.google-login:hover {
  background-color:  rgba(255, 255, 255, 0.342);
}

.or-divider {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 20px 0;
}

.or-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #ccc;
  margin: 0 10px;
}

.or-divider span {
  white-space: nowrap;
  color: #666;
}

.input-group {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.input-group .form-control {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
}

.form-group {
  margin-top: 20px;
}

.form-group button {
  width: 100%;
  padding: 10px;
  background-color: #d55d02;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.form-group button:hover {
  background-color: #010020;
}

.form-group a {
  color: #010020;
  text-decoration: none;

}

.form-group a:hover {
  color: #d55d02;
  text-decoration: underline;
}

.redirect_link p { 
  font-size: 16px;
}

.redirect_link a { 
  color: #d55d02;
  text-decoration: underline;
}

.redirect_link a:hover {
  color: #010020;
  text-decoration: underline;
}



@media screen and (max-width: 768px) {
  .background-img {  
    justify-content: center;
    align-items: center;  
    padding: 2rem 8rem; 
  } 

  .google-signup,
  .google-login {
    width: 70%;    
  }
}

@media screen and (max-width: 560px) {
  .background-img {     
    padding: 2rem 6rem; 
  } 
  
}

@media screen and (max-width: 480px) {
  .background-img {  
    justify-content: center;
    align-items: center;  
    padding: 2rem 2rem; 
  } 
  
  .google-signup,
  .google-login {
    width: 20px;    
  }

}

@media screen and (max-width: 395px) {
  .background-img {  
    justify-content: center;
    align-items: center;  
    padding: 2rem 2rem; 
  } 
  
  .google-signup,
  .google-login {
    gap: 2px;
    width: 100%;    
  }

}

@media screen and (max-width: 344px) {
  .background-img {  
    justify-content: center;
    align-items: center;  
    padding: 2rem 2rem; 
  } 
  
  .google-signup,
  .google-login {
    width: 85%;
  }

}

@media screen and (max-width: 331px) {
  .google-signup,
  .google-login {
    width: 90%;    
  }
} 

@media screen and (max-width: 331px) {
  .google-signup,
  .google-login {
    width: 100%;    
  }
} 

