/* CRICBET 99 – page 05 login */

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

body.cricbet99-page {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #b8860b 0%, #8b6914 25%, #3d5c5c 70%, #1a3d3d 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #5c4033;
  -webkit-font-smoothing: antialiased;
}

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

.cricbet99-logo {
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
}

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

.cricbet99-card {
  width: 315px;
  background: #f8f6f0;
  border-radius: 4px;
  padding: 16px 20px 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  flex-shrink: 0;
}

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

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

.cricbet99-login-icon {
  color: #5c4033;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.cricbet99-field {
  margin-bottom: 10px;
}

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

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

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

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

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

.cricbet99-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: 6px;
  font-family: inherit;
}

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

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

.cricbet99-btn-arrow {
  flex-shrink: 0;
}

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

.cricbet99-btn--demo {
  margin-bottom: 10px;
}

.cricbet99-divider {
  position: relative;
  margin: 12px 0;
  border-top: 1px solid #d0ccc4;
}

.cricbet99-divider-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f8f6f0;
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #5c4033;
}

.cricbet99-whatsapp-section {
  margin-bottom: 12px;
}

.cricbet99-whatsapp-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5c4033;
  margin: 0 0 10px;
  line-height: 1.3;
}

.cricbet99-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 6px;
  margin-bottom: 10px;
  justify-items: center;
}

.cricbet99-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: #5c4033;
  text-align: center;
}

.cricbet99-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b6914;
}

.cricbet99-feature-icon svg {
  display: block;
}

.cricbet99-btn--whatsapp {
  background: #8a4e00;
  margin-bottom: 0;
  padding: 14px 22px;
  font-size: 1.1rem;
}

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

.cricbet99-whatsapp-icon {
  flex-shrink: 0;
}

.cricbet99-footer {
  padding-top: 12px;
  border-top: 1px solid #e8e4dc;
}

.cricbet99-recaptcha {
  font-size: 0.65rem;
  color: #777;
  margin: 0 0 6px;
  line-height: 1.35;
}

.cricbet99-recaptcha a {
  color: #8b6914;
  text-decoration: none;
}

.cricbet99-recaptcha a:hover {
  text-decoration: underline;
}

.cricbet99-email {
  margin: 0 0 8px;
  font-size: 0.8rem;
}

.cricbet99-email a {
  color: #8b6914;
  text-decoration: none;
  font-weight: 500;
}

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

.cricbet99-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cricbet99-social-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5c4033;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.cricbet99-social-link:hover {
  color: #8b6914;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .cricbet99-card {
    padding: 14px 16px;
  }

  .cricbet99-features {
    grid-template-columns: 1fr;
  }
}
