/* Login page specific styles */

.container {
  max-width: 400px;
  width: 100%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.5rem;
  color: #7DCFB6;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #7DCFB6;
  font-weight: 600;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(125, 207, 182, 0.3);
  border-radius: 0;
  background: rgba(3, 76, 60, 0.3);
  box-sizing: border-box;
  font-size: 1rem;
  color: #FFE51F;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #FFE51F;
  box-shadow: 0 0 0 3px rgba(255, 229, 31, 0.2);
}

.submit-button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0D170A;
  background-color: #FFE51F;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 4px 15px 0 rgba(255, 229, 31, 0.4);
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #7DCFB6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(125, 207, 182, 0.5);
}

.toggle-form {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #7DCFB6;
}

.toggle-form a {
  color: #FFE51F;
  text-decoration: none;
  font-weight: 600;
}

.toggle-form a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

#error-message {
  color: #FFE51F;
  background-color: rgba(255, 229, 31, 0.1);
  border: 1px solid rgba(255, 229, 31, 0.3);
  border-radius: 0;
  padding: 10px;
  margin-bottom: 15px;
  display: none;
}
