.auth-container {
  padding: 60px 0;
  background-color: #f3f3f3;
}

.form-group {
  margin: 20px 0;
  width: 100%;
  max-width: 400px;
}

.input1 {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  color: #111827;
  transition: all 0.25s ease-in-out;
}

.input1:focus {
  border-color: #038c25;
  box-shadow: 0 0 0 3px rgba(3, 140, 37, 0.15);
  outline: none;
}

.input1::placeholder {
  color: #9ca3af;
}

.submit-button {
  background-color: #038c25;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  transition: all 0.25s ease-in-out;
}

.submit-button:hover {
  background-color: #026b1d;
  transform: translateY(-1px);
}

.alert {
  width: 100%;
  max-width: 600px;
  margin: 15px auto;
  border-radius: 8px;
  font-size: 15px;
}

.alert-success {
  background-color: #dcfce7;
  border: 1px solid #16a34a;
  color: #166534;
}

.alert-danger {
  background-color: #fee2e2;
  border: 1px solid #b91c1c;
  color: #7f1d1d;
}

a {
  color: #038c25;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #026b1d;
}

@media (max-width: 576px) {
  .auth-container {
    padding: 40px 15px;
  }

  h3 {
    font-size: 26px !important;
  }

  .input1 {
    font-size: 15px;
  }

  .submit-button {
    font-size: 16px;
    padding: 13px;
  }

  .alert {
    max-width: 100%;
    font-size: 14px;
  }
}
