/* 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;
}
/* Navbar Section Start */
.navbar-brand img {
  height: 60px;
  object-fit: cover;
}
.navbar {
  position: sticky;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.1);
  top:0px;
  z-index:999;
}
.navbar::after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 1.3px;
  background-color: gray;
  right: 5%;
  left: 5%;
}
/* 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) {
  .form-container {
    width: 50%;
  }
}
/* Main Section End */
