/* PLAY99 EXCH – page 06 login */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.play99-page {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #b76600 0%, #9a5500 30%, #2e6b5c 70%, #1e4a3f 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

.play99-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 0;
}

.play99-logo {
  margin: 0 0 16px;
  line-height: 0;
  flex-shrink: 0;
}

.play99-logo-img {
  display: block;
  width: 315px;
  height: 65px;
  object-fit: contain;
  vertical-align: middle;
}

.play99-card {
  width: 315px;
  min-height: 387px;
  height: auto;
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.play99-login-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.play99-login-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
}

.play99-login-icon {
  color: #8a4e00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play99-message {
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.play99-message--success {
  background: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.35);
}

.play99-message--error {
  background: rgba(220, 53, 69, 0.15);
  color: #c62828;
  border: 1px solid rgba(220, 53, 69, 0.35);
}

.play99-form {
  text-align: left;
  margin-bottom: 8px;
}

.play99-field {
  margin-bottom: 12px;
}

.play99-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d0ccc4;
  border-radius: 6px;
  transition: border-color 0.2s;
}

.play99-input-wrap:focus-within {
  border-color: #8a4e00;
  outline: none;
}

.play99-input {
  flex: 1;
  min-width: 0;
  padding: 10px 44px 10px 12px;
  font-size: 1rem;
  color: #333;
  background: transparent;
  border: none;
  outline: none;
}

.play99-input::placeholder {
  color: #888;
}

.play99-input-icon--right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  pointer-events: none;
}

.play99-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: #8a4e00;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 8px;
  font-family: inherit;
}

.play99-btn:hover {
  background: #6e3d00;
}

.play99-btn:active {
  transform: scale(0.99);
}

.play99-btn-arrow,
.play99-btn-finger {
  flex-shrink: 0;
}

.play99-btn--login {
  margin-bottom: 0.25rem !important;
}

.play99-btn--demo {
  margin-bottom: 16px;
}

.play99-recaptcha {
  font-size: 0.7rem;
  color: #777;
  margin: 0 0 10px;
  line-height: 1.4;
  text-align: center;
}

.play99-recaptcha a {
  color: #1a73e8;
  text-decoration: underline;
}

.play99-recaptcha a:hover {
  text-decoration: none;
}

.play99-email {
  margin: 0;
  font-size: 0.85rem;
  text-align: center;
}

.play99-email a {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.play99-email a:hover {
  text-decoration: underline;
}

/* WhatsApp link – inside card, text link with icon */
.play99-divider-dashed {
  border: none;
  border-top: 1px dashed #ccc;
  margin: 14px 0 10px;
}

.play99-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, text-decoration 0.2s;
}

.play99-whatsapp-link:hover {
  text-decoration: underline;
  color: #000;
}

.play99-whatsapp-link-icon {
  flex-shrink: 0;
  color: #25d366;
}

@media (max-width: 400px) {
  .play99-logo-img,
  .play99-card {
    width: 100%;
    max-width: 315px;
  }

  .play99-card {
    min-height: 387px;
  }
}
