@charset "utf-8";

body {
  padding: 0;
  margin: 0;
  background: #202124;
  color: #f1f1f1;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter', sans-serif;
}

.login-select-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #192734;
  padding: 0px 15px;
  box-sizing: border-box;
}
.login-select-box {
  background: #22303c;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-sizing: border-box;
}
.login-select-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.login-select-desc {
  color: #8899a6;
  font-size: 14px;
  margin-bottom: 28px;
}
.login-section {
  margin-bottom: 24px;
}
.login-section-title {
  color: #8899a6;
  font-size: 12px;
  margin-bottom: 12px;
}
.login-select-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.login-select-btn:last-child {
  margin-bottom: 0;
}
.login-select-btn:hover {
  opacity: 0.85;
}
.login-btn-user {
  background: #1d9bf0;
  color: #fff;
}
.login-btn-cast {
  background: linear-gradient(90deg, #ec4899 0%, #f472b6 100%);
  color: #fff;
}
.register-btn-user {
  background: transparent;
  border: 1px solid #1d9bf0;
  color: #1d9bf0;
}
.register-btn-cast {
  background: transparent;
  border: 1px solid #ec4899;
  color: #ec4899;
}
.login-select-back {
  color: #8899a6;
  font-size: 14px;
  margin-top: 24px;
}
.login-select-back a {
  color: #1d9bf0;
  text-decoration: none;
}
.login-select-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #ff2d6a 0%, #ff6b9d 100%);
  border-radius: 30px;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.login-select-link:hover {
  background: linear-gradient(135deg, rgba(236,72,153,0.25), rgba(139,92,246,0.25));
  border-color: rgba(236,72,153,0.5);
  color: #f9a8d4;
}