/* auth.css */

/* Reset default browser styles and set box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styles for a clean, neutral background and consistent typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f2f2;
  color: #333;
  line-height: 1.6;
}


/* Central container for login and registration forms */
.auth-container {
  max-width: 400px;
  width: 90%;
  margin: 5% auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header styling for the form title */
.auth-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #333;
}

/* Form styling */
.auth-container form {
  display: flex;
  flex-direction: column;
}

/* Input field styling */
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 16px;
}

/* Button styling */
.auth-container button {
  padding: 10px;
  border: none;
  background: #0073e6;
  color: #fff;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

/* Hover effect for buttons */
.auth-container button:hover {
  background: #005bb5;
}

/* Paragraph text and link styling */
.auth-container p {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.auth-container a {
  color: #0073e6;
  text-decoration: none;
}

.auth-container a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .auth-container {
    width: 95%;
    margin: 10% auto;
  }
}
