body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.auth-container {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.auth-container .error-box {
  background: #ffe5e5;
  color: #c70000;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  margin: 5px 0px;
}
.auth-container .logo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-container .logo img {
  width: 140px;
  height: auto;
}
.auth-container h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #333;
}
.auth-container .subtitle {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-container .auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-container .auth-form .input-group {
  position: relative;
}
.auth-container .auth-form .input-group input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f3f3f3;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.auth-container .auth-form .input-group .icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #888;
  pointer-events: none;
}
.auth-container .auth-form .password-rules {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}
.auth-container .auth-form .checkbox {
  font-size: 0.8rem;
}
.auth-container .auth-form .checkbox input {
  margin-right: 8px;
}
.auth-container .auth-form .checkbox a {
  color: #000000;
  text-decoration: underline;
}
.auth-container .auth-form .submit-btn {
  background-color: #000000;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.auth-container .auth-form .submit-btn:hover {
  background-color: black;
}

/*# sourceMappingURL=auth.css.map */
