
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
  }
  @media (min-width: 992px) {
    .container{
      max-width: 970px;
    }
  }
  @media (min-width: 768px) {
    .container {
      max-width: 750px;
    }
  }
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  body {
    background-color: rgb(195 216 225);
    scroll-behavior: smooth;
    margin: 0px;

  }

  .main-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
.container {
  padding-right:15px;
  padding-left:15px;
  margin-right: auto;
  margin-left: auto;
}
.main-box {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  display: flex;
  justify-content: center;
  justify-items: center;
  height: fit-content;
}
.main-box .box {
  width: fit-content;
  padding: 25px 45px;
  background-color: white;
  border-radius: 5px;


}
.box .welcome {
  display: flex;
  gap: 5px;
}
.main-box .box .title {
  color: rgb(33, 147, 76);
  text-align: center;
}
.main-box .box .form {
  display: flex;
  flex-flow: column;
  gap: 10px;

}
.main-box .box .form .field {
  display: flex;
  flex-flow: column;
  gap: 5px;

}
.main-box .box .form .field label {
  font-weight: bold;
  font-size: 15px;


}
.main-box .box .form .field input {
  width: 280px;
  border: 1px solid rgb(205, 202, 202);
  border-radius: 8px;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;


}
.main-box .box .form .field input:focus {
  outline: none;
  box-shadow: 0 0 0 1.8px rgb(13 110 253 / 25%);

}
.main-box:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.btn {
  width: 300px;
  margin-top: 18px;
  background-color: rgb(33, 147, 76);
  color: white;
  border-radius: 8px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 17px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.35s ease;
}
.btn:active {
  background-color: rgb(10, 69, 33);
  transform: translateY(3px);

}
.note {
  margin-top: 18px;
  text-align: center;
  width: 100%;

}

.note a {
  color: rgb(60, 60, 174);
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;

}
.note span{
  color: rgb(28, 27, 27);
  font-size: 12px;
  text-decoration: underline;
}
.invalid-feedback {
    color: red;
}
/* Google Button Styles */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    width: 250px;
    transition: background-color 0.3s ease;
}

.google-btn:hover {
    background-color: #357AE8;
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.google-btn span {
    vertical-align: middle;
}
