.custom-auth-wrapper {
    font-family: Poppins, Arial, sans-serif;
    margin: 40px 0;
}

.custom-auth-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    overflow: hidden;
}

.custom-auth-image {
    flex: 1;
    min-width: 400px;
}

.custom-auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-auth-form-section {
    flex: 1;
    padding: 60px 40px;
}

.custom-auth-title {
    font-size: 32px;
    color: #111827;
    font-weight: 600;
    margin: 0 0 8px;
}

.custom-auth-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0 0 32px;
}

.custom-auth-wrapper input[type="text"],
.custom-auth-wrapper input[type="email"],
.custom-auth-wrapper input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 16px;
}

.custom-auth-wrapper input:focus {
    border-color: #1E655F;
    box-shadow: 0 0 0 3px rgba(30,101,95,0.1);
    outline: none;
}

.custom-auth-wrapper button,
.custom-auth-wrapper input[type="submit"] {
    width: 100%;
    background: #1E655F;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.custom-auth-wrapper button:hover {
    background: #FCD018;
    color: #000;
}

.custom-auth-links {
    text-align: center;
    margin-top: 24px;
    color: #6B7280;
}

.custom-auth-links a {
    color: #1E655F;
    text-decoration: none;
}
/* Disable number input spinner arrows and default styling */
#jetpack_protect_answer {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Modern browsers */
  border: 1px solid #ccc; /* Custom border if you want */
  border-radius: 4px;
  padding: 6px 10px;
  outline: none;
}

/* Remove spinner arrows (Chrome, Safari, Edge, Opera) */
#jetpack_protect_answer::-webkit-outer-spin-button,
#jetpack_protect_answer::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Jetpack Protect – Clean Style */
#jetpack_protect_answer {
  width: 60px !important;
  height: 36px !important;
  font-size: 15px !important;
  text-align: center;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; 
}

/* Remove spinner arrows (Chrome, Edge, Safari) */
#jetpack_protect_answer::-webkit-outer-spin-button,
#jetpack_protect_answer::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* On focus */
#jetpack_protect_answer:focus {
  border-color: #007cba !important; /* match WP blue */
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.15);
}

/* Jetpack Protect Math Label */
label[for="jetpack_protect_answer"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 6px; /* space between numbers and symbols */
  font-size: 15px;
  font-weight: 500;
  color: #004f4f; /* adjust to match your site theme */
  margin-right: 6px;
  vertical-align: middle;
  max-width: 120px;
}

/* Container adjustments */
#jetpack-protect,
div[style*="jetpack_protect_answer"] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}
.auth-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-logo-section img{
    max-width: 200px;
}
@media (max-width: 768px) {
    .custom-auth-container {
        flex-direction: column;
    }
    .custom-auth-image {
        min-width: 100%;
        max-height: 200px;
    }
}