@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.auth-container {
  max-width: 400px;
  margin: 80px auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.auth-container h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #e63946;
}

.auth-container h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #1d3557;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.auth-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.auth-form input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.auth-form input:focus {
  border-color: #457b9d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

.auth-form button {
  margin-top: 10px;
  padding: 12px;
  background: #457b9d;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.auth-form button:hover {
  background: #1d3557;
}

.switch-link {
  margin-top: 15px;
  font-size: 0.9rem;
}

.switch-link a {
  color: #e63946;
  text-decoration: none;
  font-weight: bold;
}
