/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* COLOR VARIABLES */
:root {
  --primary: #0088cc;
  --whatsapp: #25d366;
  --text-dark: #000;
  --text-light: #fff;
  --border-light: #c7c7c7;
  --card-bg: #ffffff;
  --shadow: 0px 4px 12px rgba(0, 0, 0, 0.22);
}

/* PAGE BACKGROUND (PLAYZONE9 GRADIENT) */
body {
  background: linear-gradient(180deg, #0099E6 0%, #0066B3 100%);
  font-family: "roboto condensed", sans-serif; 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  min-height: 100vh;
}

/* LOGO */
.logo-container {
  margin-top: 25px;
  margin-bottom: 12px;
}

.logo {
  width: 230px;
  height: auto;
}

/* LOGIN CONTAINER */
.contain {
  width: 92%;
  max-width: 350px;
  background: var(--card-bg);
  padding: 28px 25px 32px 25px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* REMOVE LOGIN TITLE */
.login-title {
  display: none !important;
}

/* INPUT FIELDS */
.input-group input {
  width: 100%;
  height: 42px;
  border: none;
  border-bottom: 1.8px solid var(--border-light);
  outline: none;
  font-size: 15px;
  padding: 4px 4px;
  margin-bottom: 20px;
  background: transparent;
  font-weight: 500;
}

.input-group input::placeholder {
  color: #777;
}

.input-group input:focus {
  border-bottom: 2px solid var(--primary);
}

/* BUTTONS */
button {
  width: 100%;
  height: 44px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 0 !important;
}

.login-btn,
.demo-btn {
  background: var(--primary);
  color: var(--text-light);
}

/* RECAPTCHA INFO */
.recaptcha-info {
  margin-top: 14px;
  font-size: 11.5px;
  color: #444;
  line-height: 1.4;
}

.recaptcha-info a {
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
}

/* EMAIL TEXT */
.email-text {
  margin-top: 14px;
  font-size: 12px;
  color: #0066cc;
  font-weight: 500;
  text-decoration: none !important;
}

/* DOTTED LINE */
.email-text::after {
  content: "";
  display: block;
  width: 100%;
  margin: 12px 0;
  border-bottom: 2px dotted var(--primary);
}

/* WHATSAPP JOIN TEXT */
.whatsapp-join {
  font-size: 12px;
  margin-top: 4px;
  padding: 0;
  width: 100%;
  background: transparent;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
}

.wa-logo {
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

/* FLOATING WHATSAPP BUTTON */
.wa-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 999;
}

.wa-support img {
  width: 34px;
  height: 34px;
}

.wa-support:hover {
  transform: scale(1.08);
}

/* TOP ALERT POPUP */
.top-alert {
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: #c0392b;
  color: white;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: top 2s ease-in-out, opacity 0.3s;
  opacity: 0;

  z-index: 9999;
}

.top-alert.show {
  top: 20px;
  opacity: 1;
}

/* ALERT ICON */
.top-alert .alert-icon {
  font-size: 28px;
}

/* ALERT CLOSE BUTTON */
.top-alert .alert-close {
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.top-alert .alert-close:hover {
  opacity: 1;
}
