* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition-delay: 0;
  transition-duration: 0.1s;
  transition-property: all;
  transition-timing-function: ease;
}
html,
body {
  height: 100%;
  font-family: 'Colfax Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8f9fa;
  color: #333;
}
.auth__container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth__card {
  background: #fff;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
  border-top-left-radius: 4px;
  border-right: 2px solid #c2c2c2;
  border-bottom: 2px solid #c2c2c2;
  border-bottom-right-radius: 4px;
  box-shadow: 6px 6px 0px 0px #c3e6f5;
  padding: 40px;
  width: 100%;
  max-width: 400px;
}
.auth__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  color: #000;
  letter-spacing: -0.5px;
}
.auth__subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.auth__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.auth__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth__field label {
  color: #666;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.auth__field input {
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 2px;
  padding: 12px 14px;
  color: #333;
  font-size: 0.9rem;
  font-family: 'Colfax Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.auth__field input:focus {
  outline: none;
  border-color: #000;
}
.auth__button {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  padding: 12px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 2px 2px 0px 0px #000;
}
.auth__button:hover {
  box-shadow: 4px 4px 0px 0px #000;
}
.auth__links {
  text-align: center;
  margin-top: 20px;
}
.auth__links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
}
.auth__links a:hover {
  color: #2c5aa0;
}
.auth__error {
  color: #c00;
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  min-height: 20px;
}
