/* Import Poppins Font From Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Deafault styles for the entire document */
* {
  margin: 0;
  padding: 0;
  font-size: 12px;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", "Roboto";
  font-style: normal;
  overflow-x: hidden !important;
}
/* Navbar Section Start */
.navbar-brand img {
  height: 60px;
  object-fit: cover;
}
.navbar {
  position: relative;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.1);
}
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 1.3px;
  background-color: #5c2e91;
  right: 5%;
  left: 5%;
}
.btn-violet {
  background-color: #5c2e91;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-violet:hover {
  background-color: #350a66;
  color: #fff;
  transform: scale(1.05);
}
.btn-violet:disabled {
  background-color: #350a66;
  color: #fff;
}

/* Navbar Section End */

/* Main Section Start */
.form-container form .form-group label {
  font-size: 1.6rem;
  font-weight: 400;
}
.form-container form .form-group input,
.form-select {
  font-size: 1.3rem;
}
.toggle {
  position: relative;
}
#toggleConfirmPassword,
#toggleConfirmPassword1 {
  position: absolute;
  top: 3.1rem;
  right: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .form-container {
    width: 75%;
  }
}
@media screen and (min-width: 1441px) {
  .form-container {
    width: 50%;
  }
}
/* Main Section End */

/* re-CAPTCHA Section Start */
.recaptcha-container {
  transform: scale(0.85); /* adjust as needed */
  transform-origin: 0 0; /* keep it aligned to the top left */
}

@media (max-width: 480px) {
  .recaptcha-container {
    transform: scale(0.75);
  }
}
/* re-CAPTCHA Section End */

#toggleConfirmPassword1,
#toggleConfirmPassword {
  cursor: pointer;
}
