* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  background: linear-gradient(183deg,rgba(0, 0, 0, 1) 51%, rgba(71, 71, 71, 1) 100%);
}

.auth-wrapper {
 width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin-bottom: 24px;
}

.login-container {
  width: 100%;
  background: #ffffff;
  padding: 32px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
  color: #1F1F1F;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-form input:focus {
  border-color: #F4B400;
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

.login-form input::placeholder {
  color: #777777;
}

.login-form button {
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: #F4B400;
  color: #1F1F1F;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.login-form button:hover {
  opacity: 0.95;
}

.login-form button:active {
  transform: scale(0.98);
}