/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #d6cacab1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Form Wrapper */
.auth-wrapper {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
}

/* Form Title */
.auth-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Input Fields */
.auth-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.auth-input:focus {
  border-color: #28a745;
  outline: none;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.2);
}

/* Buttons */
.auth-button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.auth-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Links */
.auth-text {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.auth-text a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
}

.auth-text a:hover {
  text-decoration: underline;
}

/* Messages */
.auth-message {
  margin-top: 10px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 480px) {
  .auth-wrapper {
      width: 90%;
      padding: 20px;
  }
}
