/* 1. Global Turkish Font & Setup */
:root {
  --primary-glow: #00f2ff; /* Cyan glow like the ships */
  --accent-gold: #ffcc00;  /* Gold for the action buttons */
  --glass: rgba(0, 0, 0, 0.7);
  --glass-border: rgba(0, 242, 255, 0.3);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Exo', sans-serif;
  background: #000 url('/img/bgindex1.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
}

/* 2. Top-Right Login (Giriş) */
#login {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
  width: 220px;
}

#login input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  transition: 0.3s;
}

#login input:focus {
  border-color: var(--primary-glow);
  outline: none;
  background: rgba(0, 242, 255, 0.05);
}

#login button {
  width: 100%;
  background: var(--accent-gold);
  color: black;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

#login button:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
}

.bgcdw_remindpassword {
  display: block;
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
  color: #aaa;
  text-decoration: none;
}

/* 3. Bottom-Center Register (Kayıt Ol) */
#reg {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glass);
  backdrop-filter: blur(15px);
  padding: 25px 35px;
  border-radius: 15px;
  border-top: 2px solid var(--primary-glow); /* Neon strip at top */
  width: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

#reg h1 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-glow);
}

#reg label {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 5px;
  display: block;
}

#reg input {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: white;
  margin-bottom: 12px;
}

/* Buttons for Registration */
.bgc_signup_form_register {
  background: var(--primary-glow) !important;
  color: black !important;
  font-weight: bold;
}

.bgc_signup_form_back {
  background: transparent !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  margin-bottom: 10px;
}

.bgc_signup_form_buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Terms checkbox styling */
.link_tac {
    color: var(--primary-glow);
    font-size: 12px;
    text-decoration: none;
}