@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

body {
  background-color: #fafafa;
  font-family: "Plus Jakarta Sans";
  min-width: 320px;
  box-sizing: border-box;
  margin: 0;
  padding-top: 7.3rem;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loginForm {
  text-align: center;
}

.logo {
  margin-bottom: 1rem;
}

.formStyle {
  width: 30rem;
  flex-shrink: 0;
  text-align: left;
  border-radius: 1.625rem;
  border: 1px solid #d6d6d6;
  padding: 3.43rem 2.5rem;
  margin-bottom: 2rem;
}

.formStyle h1 {
  color: #000;
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 0.2rem;
}

.formStyle .subhead {
  color: #000;
  font-size: 1.5625rem;
  margin: 0;
  margin-bottom: 2.93rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border-radius: 0.625rem;
  border: 1px solid #eaeaea;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(174, 174, 174, 0.2);
  display: block;
  width: 100%;
  padding: 1.53rem 1.64rem;
  margin-bottom: 1.4rem;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
  color: #b0a9a9;
  font-size: 0.9375rem;
}

.forgetpassword {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 0.9375rem;
  margin-bottom: 2.77rem;
}

.textStyle {
  color: #333;
  font-size: 0.9375rem;
  margin-bottom: 2.77rem;
  display: inline-block;
}

input[type="submit"] {
  border-radius: 0.625rem;
  border: 1px solid #eaeaea;
  background: #0d2e59;
  box-shadow: 0px 10px 40px 0px rgba(174, 174, 174, 0.2);
  width: 100%;
  color: #fff;
  font-size: 0.9375rem;
  padding: 1.47rem;
}

.newuser {
  color: #333;
  font-size: 0.9375rem;
  text-align: center;
}

.newuser span {
  font-weight: bold;
}

footer {
  background-color: #0e0f1f;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 12px;
  }
}

.dropdown-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    appearance: none; /* This removes the default arrow for some browsers */
    background-color: #e9e9e9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
}

/* This is for the arrow of the dropdown */
select::-ms-expand {
    display: none;
}

/* Optional: Add some hover effects */
select:hover {
    background-color: #d9d9d9;
}

select:focus {
    outline: none;
    background-color: #c9c9c9;
}




