/* Login Page */

body {
    background: #f4f6f9;
    font-family: 'Inter', sans-serif;
}

#login-wrapper {
    background: linear-gradient(120deg, #eef2ff, #ffffff);
    min-height: 100vh;
    display: flex;
}




/* LEFT PANEL */
#login-left {
    background: #fff;
    padding: 60px;
}

.login-box {
    max-width: 420px;
}

.brand h2 {
    font-weight: 700;
}

.input-group-text {
    cursor: pointer;
    background: #fff;
}

.social-login i {
    font-size: 20px;
    margin: 0 10px;
    cursor: pointer;
    color: #555;
}

.social-login i:hover {
    color: #0d6efd;
}

/* RIGHT PANEL */
#login-right {
    background: linear-gradient(135deg, #0d6efd, #4f46e5) !important;
    color: #fff !important;
    padding: 80px !important;
    align-items: center;
}


.info-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 12px;
    font-size: 16px;
}

.info-box i {
    margin-right: 10px;
}

/* Player Pair */

/* ========================================
   Player Screen Pairing Page
   Scoped for AdminLTE
======================================== */

#pair-section {
  min-height: 100vh;
  background-color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pair-section .pair-box {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

#pair-section h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

#pair-section .hint {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 25px;
}

#pair-section .code {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 10px;
  margin: 30px 0;
  color: #38bdf8;
  font-family: "Courier New", monospace;
}

#pair-section .status {
  margin-top: 20px;
  font-size: 16px;
  color: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  #pair-section .code {
    font-size: 48px;
    letter-spacing: 6px;
  }

  #pair-section h1 {
    font-size: 24px;
  }
}



/* Signup Page */


/* MAIN WRAPPER */
#signup-wrapper {
    font-family: 'Segoe UI', sans-serif;
}

/* LEFT PANEL */
#signup-left {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 60px;
}

#signup-left .content {
    max-width: 420px;
}

#signup-left h2 {
    font-weight: 700;
    margin-bottom: 30px;
}

#signup-left .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.user-box {
    /*display: flex;*/
    align-items: center;
    margin-top: 40px;
}

.user-box img {
    border-radius: 50%;
    margin-right: 15px;
}

.user-box h6 {
    margin: 0;
    font-weight: 600;
}

/* RIGHT PANEL */
#signup-right {
    background: #f8f9fa;
    padding: 40px;
}

.form-box {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-box h3 {
    font-weight: 700;
}

.form-control {
    height: 48px;
    border-radius: 8px;
}

.input-group-text {
    cursor: pointer;
}

.btn-primary {
    border-radius: 8px;
    background: #2a5298;
    border: none;
}

.btn-primary:hover {
    background: #1e3c72;
}



/*bodyr scroll*/

/* Keep full layout fixed */
html, body {
    height: 100%;
    overflow: hidden;
}

/* Wrapper occupies screen */
.app-wrapper {
    height: 100vh;
    overflow: hidden;
}

/* Only main content scrolls */
.app-main {
    overflow-y: auto !important;
    height: 100%;
}





