.auth-form {
  max-width: 340px;
  margin: 40px auto 32px;
  background: #1a1d25;
  border-radius: 15px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px #0008;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth-form input[type="text"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #263045;
  border-radius: 7px;
  font-size: 16px;
  background: #232635;
  color: #eaf0f7;
}
.auth-form button[type="submit"] {
  background: #5c7cff;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 7px;
  border: none;
  padding: 12px 0;
  margin-top: 10px;
  transition: background 0.12s;
  cursor: pointer;
}
.auth-form button[type="submit"]:hover {
  background: #3950b5;
}

.auth-socials {
  max-width: 340px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.auth-social {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 12px 0;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 600;
  background: #232635;
  color: #eee;
  transition: background 0.13s;
}
.auth-social.vkid { background: #4a76a8; color: #fff; }
.auth-social.google { background: #fff; color: #222; border: 1px solid #ddd; }
.auth-social.steam { background: #171a21; color: #66c0f4; }
.auth-social.vkid:hover { background: #315685; }
.auth-social.google:hover { background: #f0f0f0; }
.auth-social.steam:hover { background: #10131a; }

.alert.alert-danger {
  background: #ff344c;
  color: #fff;
  border-radius: 7px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}
