/* Auth pages only */

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #1a1a1a, #000);
  color: #fff;
  margin: 0;
  min-height: 100vh;
}

.auth-container {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.auth-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
}

.auth-actions a,
.auth-actions button {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  text-decoration: none;
  cursor: pointer;
}

.auth-main {
  display: grid;
  align-content: start;
  justify-items: center;
  row-gap: 32px;
  padding: 24px;
}

.auth-title {
  margin-top: 24px;
  font-size: 32px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.auth-form {
  width: 520px;
  max-width: calc(100% - 48px);
  display: grid;
  row-gap: 28px;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.auth-input {
  height: 72px;
  border: 2px solid #555;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
  background: #333;
  transition: border-color 0.3s;
}

.auth-input:focus {
  outline: none;
  border-color: #27ae60;
}

.auth-submit {
  width: 380px;
  height: 56px;
  margin: 12px auto 0;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.password-requirements {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 8px 0;
}

/* Small screens */
@media (max-width: 600px) {
  .auth-form {
    row-gap: 20px;
  }
  .auth-input {
    height: 60px;
  }
  .auth-submit {
    width: 100%;
  }
}



