*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: #f4f4f1;
  color: #1f211f;
}

button,
input {
  font: inherit;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border: 1px solid #ddddda;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.auth-header {
  margin-bottom: 32px;
}

.auth-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #1f211f;
  color: #ffffff;
  font-size: 20px;
}

.auth-header h1 {
  margin-bottom: 10px;
  font-size: 32px;
}

.auth-header p {
  color: #6f716f;
  line-height: 1.6;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d4d5d1;
  border-radius: 12px;
  outline: none;
}

input:focus {
  border-color: #1f211f;
}

button {
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  background: #1f211f;
  color: #ffffff;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.status-message {
  min-height: 24px;
  margin-top: 18px;
  color: #5c5e5b;
  line-height: 1.5;
}

.status-message.error {
  color: #b42318;
}

.status-message.success {
  color: #18864b;
}