.auth-container {
  max-width: 500px;
  margin: 60px auto;
  padding: 20px;
}
.auth-container .auth-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.auth-container .auth-title {
  text-align: center;
  margin-bottom: 30px;
  color: #557c32;
  font-weight: bold;
  border-bottom: 2px solid rgb(200.525862069, 224.3965517241, 179.1034482759);
  padding-bottom: 15px;
}
.auth-container .auth-footer {
  margin-top: 25px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.auth-container .auth-footer a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}
.auth-container .auth-footer a.is-primary {
  color: #557c32;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
}
.form-group.is-last {
  margin-bottom: 30px;
}
.form-group .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}
.form-group .form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-group .form-input:focus {
  border-color: #557c32 !important;
  -webkit-box-shadow: 0 0 0 3px rgba(85, 124, 50, 0.1) !important;
          box-shadow: 0 0 0 3px rgba(85, 124, 50, 0.1) !important;
  outline: none;
}

.auth-submit-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: #557c32;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 0 #3d5a24;
          box-shadow: 0 4px 0 #3d5a24;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.auth-submit-btn:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 5px 0 #3d5a24;
          box-shadow: 0 5px 0 #3d5a24;
}
.auth-submit-btn:active {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 2px 0 #3d5a24 !important;
          box-shadow: 0 2px 0 #3d5a24 !important;
}
.auth-submit-btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(85, 124, 50, 0.3), 0 4px 0 #3d5a24;
          box-shadow: 0 0 0 3px rgba(85, 124, 50, 0.3), 0 4px 0 #3d5a24;
}

.auth-msg {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid transparent;
}
.auth-msg p {
  margin: 0;
}
.auth-msg.is-error {
  background-color: #fdf2f2;
  color: #d32f2f;
  border-color: #f9dada;
}
.auth-msg.is-success {
  background-color: #e7f3e8;
  color: #2e7d32;
  border-color: #c8e6c9;
}
.auth-msg a {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}
.auth-msg a:hover {
  opacity: 0.8;
}