.ast-site-header {
    margin-bottom: 0 !important;
}
.bcpl-complete-profile-container {
    display: flex;
    height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
}

.entry-content .auth-form-title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    font-family: 'Montserrat';
    margin-bottom: 40px;
    text-align: left;
    color: #0B0B42;
}

.bcpl-complete-profile-left {
    height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}

.bcpl-complete-profile-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bcpl-complete-profile-right {
    padding: 40px 60px;
    background: #fff;
}

.bcpl-complete-profile-right h2 {
    color: #0c2461;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.bcpl-form-group {
    position: relative;
    margin-bottom: 20px;
}

.bcpl-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.bcpl-form-group label span {
    color: #ff4b26;
}

.bcpl-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.bcpl-form-group input:focus {
    border-color: #1e3799;
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 55, 153, 0.1);
}

.bcpl-form-group input[readonly] {
    background-color: #f5f5f5;
    padding-right: 40px; /* Space for the verified icon */
}

/* Email input container */
.email-input-container {
    position: relative;
}

.email-input-container input[type="email"] {
    padding-right: 80px; /* Space for verify button */
}

/* Verify button inside email input */
.bcpl-verify-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #FF4B26;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bcpl-verify-btn:hover {
    background: #e63e1a;
}

/* Verified mobile number styling */
.verified-mobile {
    position: relative;
}

.verified-mobile::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border-radius: 50%;
}

.verified-mobile::before {
    content: '✓';
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    z-index: 1;
}

.bcpl-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #ff4b26;
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.bcpl-submit-btn:hover {
    background-color: #e63e1a;
}


.verified-field {
    display: flex;
    align-items: center;
}

.verified-icon {
    color: green;
    margin-left: 10px;
}

.status-message {
    font-size: 0.9em;
    margin-top: 5px;
}

.status-message.error {
    color: red;
}

.status-message.success {
    color: green;
}

.email-verification-section {
    display: none; /* Will be shown when verify button is clicked */
    margin-top: 10px;
}

.email-verification-section.active {
    display: block;
}

.verification-message {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.otp-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.otp-input {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.otp-input:focus {
    border-color: #FF4B26;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 75, 38, 0.1);
}

.timer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.resend-text {
    font-size: 13px;
    color: #666;
}

.resend-link {
    color: #FF4B26;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.resend-link.disabled {
    color: #999;
    cursor: not-allowed;
}

.timer {
    font-size: 13px;
    color: #666;
}

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.success-popup {
    background: white;
    width: 580px;
    height: 285px;
    border-radius: 10px;
    text-align: center;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 64px;
    height: 64px;
}

.success-popup h2 {
    color: #0037B7;
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.success-popup p {
    color: #333;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

.success-popup-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
}

.success-popup-btn {
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.success-popup-btn.home {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 999px;
    text-decoration: none;
}

.success-popup-btn.register {
    background: #FF4D00;
    color: white;
    border: none;
}

.success-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} 

.entry-header.ast-no-thumbnail {
    display: none !important;
}

.ast-plain-container.ast-no-sidebar #primary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
}

@media (min-width: 1200px) {
    .bcpl-complete-profile-right-inner {
        width: 70%;
        margin: 0 auto;
    }

    .bcpl-complete-profile-left{
        width: 40%;
    }

    .bcpl-complete-profile-right{
        width: 60%;
    }
}

@media (max-width: 768px) {
  .bcpl-complete-profile-container {
    flex-direction: column;
    height: auto;
  }

  .bcpl-complete-profile-left {
    width: 100%;    
    height: 281px;
  }

  .bcpl-complete-profile-left img {
    height: 100%;
    object-fit: cover;
  }

  .bcpl-complete-profile-right {
    padding: 24px 16px;
  }

  .bcpl-complete-profile-right h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }

  .bcpl-form-group input {
    font-size: 14px;
    padding: 10px 14px;
  }

  .email-input-container input[type="email"] {
    padding-right: 90px;
  }

  .bcpl-verify-btn {
    font-size: 12px;
    padding: 5px 10px;
    right: 6px;
  }

  .otp-input-group {
    justify-content: center;
    gap: 6px;
  }

  .otp-input {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .timer-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .resend-text,
  .timer {
    font-size: 13px;
  }

  .bcpl-submit-btn {
    font-size: 15px;
    padding: 12px;
    margin-top: 16px;
  }

  .success-popup {
    width: 90%;
    height: auto;
    padding: 24px 16px;
    gap: 16px;
  }

  .success-icon {
    width: 48px;
    height: 48px;
  }

  .success-popup h2 {
    font-size: 20px;
  }

  .success-popup p {
    font-size: 14px;
  }

  .success-popup-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .success-popup-btn {
    font-size: 14px;
    padding: 10px;
    min-width: auto;
    width: 100%;
    text-decoration: none;
    border-radius: 999px;
  }
}
