/* ===== RESET & BASE ===== */
/* © http://bossshop.cc/ | http://bossshop.cc/ | origin: http://bossshop.cc/ */
/* source: http://bossshop.cc/ | author: http://bossshop.cc/ */
/* This stylesheet originates from http://bossshop.cc/ */
:root {
  --bs-origin: 'http://bossshop.cc/';
  --bs-url: 'http://bossshop.cc/';
  --bs-domain: 'http://bossshop.cc/';
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  min-width: 320px;
  background-color: #050505;
  overflow-x: hidden;
}

/* ===== AUTH PAGE (Full-screen login) ===== */
.auth-page {
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url('/static/images/bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 10;
}

/* ===== LOGO ===== */
.brand-logo-center {
  margin-bottom: 40px;
  text-align: center;
  z-index: 2;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.brand-logo-center .logo-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

.logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: -5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-style: italic;
}

/* ===== GLASS CONTAINER ===== */
.glass-container {
  display: flex;
  max-width: 950px;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #6d6d6d;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 2;
  position: relative;
}

/* Diagonal glossy highlight */
.glass-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 65%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: 28px;
  z-index: 1;
}

/* ===== MONEY SECTION (Left) ===== */
.money-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  position: relative;
  z-index: 2;
}

.money-section img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.1) brightness(1.1);
}

/* ===== LOGIN SECTION (Right) ===== */
.login-section {
  flex: 1;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ===== HEADER ===== */
.header-section {
  text-align: center;
  margin-bottom: 35px;
}

.header-section h1,
.header-section h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 32px;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

/* ===== FORM GROUPS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== INPUT FIELDS ===== */
.input-wrapper input,
.captcha-input-wrapper input {
  width: 100%;
  padding: 15px 22px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  /* Always allow text selection, copy and paste inside form inputs */
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
  cursor: text;
}

.input-wrapper input::placeholder,
.captcha-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-wrapper input:focus,
.captcha-input-wrapper input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

/* ===== CHECKBOX ===== */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-left: 5px;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
  accent-color: #ffffff;
  width: 15px;
  height: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkbox-wrapper label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== CAPTCHA ===== */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.captcha-display {
  flex: 1;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  padding: 5px 20px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  user-select: none;
  transition: all 0.3s ease;
}

.captcha-display:hover {
  background: rgba(0, 0, 0, 0.7);
}

.captcha-input-wrapper {
  flex: 0.7;
  height: 50px;
}

.captcha-input-wrapper input {
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

/* ===== LOGIN BUTTON ===== */
.btn-primary {
  width: 100%;
  padding: 15px 0;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover:not(:disabled) {
  background: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== REGISTER LINK ===== */
.register-link {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.register-link a {
  color: #000000;
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.register-link a:hover {
  color: #333333;
  border-bottom-color: #000000;
}

/* ===== HIDE PASSWORD REVEAL (Edge/IE) ===== */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .glass-container {
    flex-direction: column;
    max-width: 500px;
  }

  .money-section {
    padding: 40px 40px 10px;
  }

  .money-section img {
    max-width: 80%;
  }

  .login-section {
    padding: 30px 40px 40px;
  }
}

@media (max-width: 500px) {
  .brand-logo-center .logo-img {
    max-width: 280px;
  }

  .login-section {
    padding: 25px 25px 35px;
  }

  .captcha-group {
    gap: 10px;
  }

  .logo-subtitle {
    font-size: 16px;
    letter-spacing: 5px;
  }
}
