.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 25px;
  background: #f9fdfd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
  text-align: center;
  color: #00796b;
  margin-bottom: 20px;
}
 
.form-group {
  margin-bottom: 15px;
  position: relative;
}

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

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 35px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.toggle-password:hover {
  opacity: 0.7;
}

button.btn-primary {
  width: 100%;
  padding: 10px;
  background: #00796b;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

button.btn-primary:hover {
  background: #00695c;
}

p {
  text-align: center;
  margin-top: 10px;
}

p a {
  color: #00796b;
  text-decoration: none;
  font-weight: 600;
}

p a:hover {
  text-decoration: underline;
}

.error {
  color: red;
  font-size: 13px;
}
