* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #98a084;
}
.container {
  position: relative;
  max-width: 370px;
  width: 100%;
  padding: 25px;
  border-radius: 8px;
  background-color: #fff;
}

.container header {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  color: #333;
}
/* Center the logo */
.brand-logo {
    text-align: center;
    margin-bottom: 30px;
}
.brand-logo img {
    max-width: 250px;
}
.container form {
  margin-top: 30px;
}
form .field {
  margin-bottom: 20px;
}
form .input-field {
  position: relative;
  height: 55px;
  width: 100%;
}
.input-field input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 8px;
  padding: 0 15px;
  border: 1px solid #d1d1d1;
}
.invalid input {
  border-color: #d93025;
}
.input-field .show-hide {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #919191;
  cursor: pointer;
  padding: 3px;
}
.field .error {
  display: flex;
  align-items: center;
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  display: none;
}
.invalid .error {
  display: flex;
}
.error .error-icon {
  margin-right: 6px;
  font-size: 15px;
}
.create-password .error {
  align-items: flex-start;
}
.create-password .error-icon {
  margin-top: 4px;
}
.button {
  margin: 25px 0 6px;
}
.button input {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: #98a084;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input:hover {
  background-color: #798755;
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

.cf-turnstile {
    display: inline-block;
}

.footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.footer a {
    margin-left: 5px;
}

.button-group {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.button-group input[type="radio"] {
    display: none;
}

.radio-btn {
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    color: #333;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.radio-btn:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

input[type="radio"]:checked + .radio-btn {
    background-color: #98a084;
    color: white;
    border-color: #98a084;
}

.info-cards {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.card {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 10px; /* Adds space between the link and the password field */
  margin-top: -10px; /* Optional: Adjust this if you need to pull it closer to the email field */
}

.forgot-password a {
  font-size: 0.9rem;
  color: #007bff; /* Adjust color if needed */
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.font-weight-light {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

button.auth-form-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: #98a084;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
}

button.auth-form-btn:hover {
  background-color: #798755;
}

.form-label {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.font-weight-light {
  font-size: 24px;
  color: #777;
  margin-bottom: 20px;
}

button.auth-form-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  background-color: #98a084;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
}

button.auth-form-btn:hover {
  background-color: #798755;
}