/* Pineapple Theme Colors */
:root {
    --pineapple-yellow: #f5cc39;
    --pineapple-yellow-light: #ffeea3;
    --pineapple-yellow-dark: #e3b728;
    --pineapple-green: #59df99;
    --pineapple-green-light: #a1f3c5;
    --pineapple-green-dark: #19ac54;
    --pineapple-brown: #8b572a;
    --text-dark: #333333;
    --text-light: #6c757d;
    --background-light: #f9f9f9;
  }
  
  /* Updated Root Variables */
  :root {
    --pinana-yellow: #f2d045;
    --pinana-green: #0b7a3e;
    --pinana-light-yellow: #fff5d6;
  }
  
  /* General Styles */
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
  }
  
  /* Updated General Styles */
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow-x: hidden;
  }
  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
  }
  
  .login-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .top-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .logo {
    width: 150px;
    height: auto;
  }
  
  .main-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .background-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background-color: var(--pinana-light-yellow);
    bottom: -400px;
    left: -100px;
    z-index: -1;
  }
  
  /* Sidebar Styles */
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: all 0.3s;
  }
  
  .sidebar-inner {
    height: 100%;
    overflow-y: auto;
    padding: 1rem;
  }
  
  .logo-container {
    padding: 0.5rem 1rem;
  }
  
  .logo {
    height: 40px;
  }
  
  .sidebar-divider {
    margin: 1rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    border-radius: 0.375rem;
    transition: all 0.2s;
  }
  
  .sidebar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-nav .nav-link.active {
    background-color: var(--pineapple-yellow-light);
    color: var(--pineapple-brown);
  }
  
  .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    margin-right: 0.75rem;
  }
  
  /* Main Content Styles */
  .main-content {
    padding-top: 4rem;
  }
  
  .fixed-top-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 1.5rem;
    margin-left: 16.66667%;
    width: calc(100% - 16.66667%);
  }
  
  @media (max-width: 767.98px) {
    .fixed-top-header {
      margin-left: 0;
      width: 100%;
    }
  }
  
  .main-content-inner {
    padding-top: 1rem;
  }
  
  /* User Profile Dropdown */
  .user-profile-dropdown .profile-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--pineapple-yellow);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .notification-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  /* Stats Cards */
  .stats-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--pineapple-yellow);
  }
  
  .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Status Badges */
  .status-badge {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 30px;
    display: inline-block;
    min-width: 90px;
    text-align: center;
  }
  
  .status-order {
    background-color: rgba(245, 204, 57, 0.15);
    color: var(--pineapple-yellow-dark);
  }
  
  .status-processing,
  .status-confirmed {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
  }
  
  .status-shipped {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
  }
  
  .status-delivered {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
  }
  
  .status-cancelled,
  .status-issue {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
  }
  
  /* Action Buttons */
  .action-buttons {
    display: flex;
    gap: 5px;
  }
  
  .action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    transition: all 0.2s ease;
  }
  
  .action-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .action-btn-view {
    color: var(--pineapple-yellow-dark);
  }
  
  .action-btn-receive {
    color: #198754;
  }
  
  .action-btn-issue {
    color: #dc3545;
  }
  
  /* Timeline Styles */
  .status-timeline {
    position: relative;
    margin-left: 20px;
  }
  
  .status-timeline-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 20px;
  }
  
  .status-timeline-item:before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e0e0e0;
  }
  
  .status-timeline-item:last-child:before {
    height: 10px;
  }
  
  .status-timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--pineapple-yellow);
  }
  
  .status-timeline-content {
    padding-left: 10px;
  }
  
  .status-timeline-title {
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .status-timeline-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
  }
  
  .status-timeline-notes {
    font-size: 0.9rem;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .sidebar {
      transform: translateX(-100%);
    }
  
    .sidebar.show {
      transform: translateX(0);
    }
  
    .main-content {
      margin-left: 0;
      width: 100%;
    }
  }
  
  /* Login Page Styles */
  .logo-container {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .pineapple-large {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
  }
  
  .square-light-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
  }
  
  .icon-bulb {
    position: absolute;
    bottom: 20%;
    right: 20%;
    color: var(--pinana-yellow);
    font-size: 24px;
  }
  
  .form-area {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .login-form-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddbd3e;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }
  
  .login-form-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-control {
    height: 50px;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
  }
  
  /* Fix for the input group */
  .input-group .form-control {
    margin-bottom: 0;
  }
  
  /* Add margin to the input group instead */
  .input-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-weight: 500;
    color: #333;
  }
  
  .btn-primary {
    background-color: var(--pinana-yellow);
    border-color: var(--pinana-yellow);
    width: 100%;
    height: 50px;
    font-weight: 600;
    color: #333;
  }
  
  .btn-primary:hover {
    background-color: #e0c040;
    border-color: #e0c040;
  }
  
  .btn-staff {
    background-color: var(--pinana-yellow);
    border-color: var(--pinana-yellow);
    color: #333;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 4px;
  }
  
  .btn-staff:hover {
    background-color: #e0c040;
    border-color: #e0c040;
  }
  
  .forgot-password {
    color: #4a5aef;
    text-decoration: none;
    font-size: 14px;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  .form-check-input:checked {
    background-color: var(--pinana-yellow);
    border-color: var(--pinana-yellow);
  }
  
  .form-check-input:focus {
    border-color: var(--pinana-yellow);
    box-shadow: 0 0 0 0.25rem rgba(242, 208, 69, 0.25);
  }
  
  .error-message {
    color: #dc3545;
    margin-bottom: 15px;
    text-align: center;
    display: none;
  }
  
  /* Retailer Registration Button */
  .register-retailer-btn {
    background-color: white;
    border: 2px solid var(--pinana-yellow);
    color: #333;
    font-weight: 500;
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .register-retailer-btn:hover {
    background-color: var(--pinana-light-yellow);
    border-color: var(--pinana-yellow);
  }
  
  /* Modal Styles */
  .modal-header {
    background-color: var(--pinana-yellow);
    color: #333;
    border-bottom: none;
  }
  
  .modal-title {
    font-weight: 600;
  }
  
  .modal-body {
    padding: 20px 30px;
  }
  
  .modal-footer {
    border-top: none;
    padding: 15px 30px 25px;
  }
  
  .form-section {
    margin-bottom: 30px;
  }
  
  .form-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .form-section-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
  }
  
  .required-field::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
  }
  
  /* IntlTelInput custom styles */
  .iti {
    width: 100%;
  }
  
/* Social media inputs */
.social-media-input {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

.social-media-icon {
  flex: 0 0 40px;
  text-align: center;
  font-size: 20px;
  color: #6c757d;
  margin-right: 10px;
  transition: color 0.2s ease-in-out;
}
  
.social-media-input .form-control {
  flex: 1;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.social-media-input .form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.social-media-input .form-control:focus + .social-media-icon {
  color: #0d6efd;
}
  
/* Specific icon colors */
.social-media-input .facebook-icon {
  color: #1877f2;
}

.social-media-input .instagram-icon {
  color: #e1306c;
}

.social-media-input .tiktok-icon {
  color: #000000;
}
  /* Age display */
  .age-display {
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px 15px;
    font-weight: 500;
  }
  
  /* Progress indicator */
  .registration-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
  }
  
  .registration-progress::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
  }
  
  .progress-step {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 0 10px;
  }
  
  .progress-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 8px;
  }
  
  .progress-step-text {
    font-size: 12px;
    color: #666;
    text-align: center;
  }
  
  .progress-step.active .progress-step-number {
    background-color: var(--pinana-yellow);
    color: #333;
  }
  
  .progress-step.active .progress-step-text {
    color: #333;
    font-weight: 500;
  }
  
  .progress-step.completed .progress-step-number {
    background-color: #28a745;
    color: white;
  }
  
  /* Success Modal */
  .success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 1rem;
  }
  
  .success-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* Verification Modal */
  .verification-icon {
    font-size: 5rem;
    color: #ffc107;
    margin-bottom: 1rem;
  }
  
  .verification-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .email-highlight {
    font-weight: bold;
    color: #333;
    background-color: var(--pinana-light-yellow);
    padding: 2px 5px;
    border-radius: 3px;
  }
  
  /* Password strength indicator */
  .password-strength {
    margin-top: 5px;
  }
  
  .password-strength .progress {
    height: 5px;
    margin-bottom: 5px;
  }
  
  /* Email verification styles */
  .email-verification-pending {
    color: #ffc107;
  }
  
  .email-verification-success {
    color: #28a745;
  }
  
  .email-verification-error {
    color: #dc3545;
  }
  
  /* Responsive styles */
  @media (max-width: 1200px) {
    .square-light-img {
      width: 400px;
    }
  }
  
  @media (max-width: 992px) {
    .main-content {
      flex-direction: column;
      position: relative;
    }
  
    .logo-container {
      width: 100%;
      height: auto;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: visible;
      margin-bottom: 0;
    }
  
    .pineapple-large {
      transform: scale(0.8);
      opacity: 0.3;
    }
  
    .form-area {
      width: 100%;
      padding: 20px;
      position: relative;
      z-index: 1;
    }
  
    .icon-bulb {
      display: none;
    }
  
    .login-form-container {
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(5px);
      border: 1px solid rgba(221, 189, 62, 0.7);
    }
  }
  
  @media (max-width: 768px) {
    .top-logo {
      margin-bottom: 20px;
    }
  
    .logo {
      width: 130px;
    }
  
    .logo-container {
      height: 150px;
    }
  
    .pineapple-large {
      transform: scale(0.7);
    }
  
    .square-light-img {
      width: 550px;
    }
  
    .login-form-container {
      padding: 20px;
    }
  
    .login-form-container h2 {
      font-size: 24px;
      margin-bottom: 0px;
    }
  
    .form-control,
    .btn-primary,
    .register-retailer-btn {
      height: 45px;
    }
  
    .modal-dialog {
      margin: 10px;
    }
  
    .modal-body {
      padding: 15px;
    }
  
    .registration-progress {
      margin-bottom: 20px;
    }
  
    .progress-step-text {
      font-size: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .top-logo {
      margin-bottom: 15px;
    }
  
    .logo {
      width: 120px;
    }
  
    .logo-container {
      height: 120px;
    }
  
    .pineapple-large {
      transform: scale(0.6);
    }
  
    .square-light-img {
      width: 750px;
    }
  
    .login-form-container {
      padding: 15px;
    }
  
    .login-form-container h2 {
      font-size: 22px;
      margin-bottom: 15px;
    }
  
    .form-control,
    .btn-primary,
    .register-retailer-btn {
      height: 40px;
      font-size: 14px;
    }
  
    .form-label {
      font-size: 14px;
    }
  
    .forgot-password {
      font-size: 12px;
    }
  
    .form-check-label {
      font-size: 14px;
    }
  
    .modal-title {
      font-size: 18px;
    }
  
    .form-section-title {
      font-size: 16px;
    }
  
    .progress-step-number {
      width: 25px;
      height: 25px;
      font-size: 12px;
    }
  
    .progress-step-text {
      font-size: 9px;
    }
  
    /* Adjust form rows on mobile */
    .row .col-md-6 {
      margin-bottom: 15px;
    }
  
    /* Make buttons more touch-friendly */
    .btn {
      padding-top: 8px;
      padding-bottom: 8px;
    }
  }
  
  /* Fix for very small screens */
  @media (max-width: 360px) {
    .top-logo {
      margin-bottom: 10px;
    }
  
    .logo {
      width: 100px;
    }
  
    .logo-container {
      height: 100px;
    }
  
    .pineapple-large {
      transform: scale(0.5);
    }
  
    .square-light-img {
      width: 200px;
    }
  
    .login-form-container {
      padding: 10px;
    }
  
    .login-form-container h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }
  
    .form-control,
    .btn-primary,
    .register-retailer-btn {
      height: 38px;
      font-size: 13px;
    }
  
    .d-flex.justify-content-between.align-items-center {
      flex-direction: column;
      align-items: flex-start !important;
    }
  
    .forgot-password {
      margin-top: 10px;
    }
  }
  
  .form-logo-container {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .form-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
  }
  
  @media (max-width: 768px) {
    .form-logo {
      width: 150px;
    }
  }
  
  @media (max-width: 576px) {
    .form-logo {
      width: 130px;
    }
  
    .form-logo-container {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 360px) {
    .form-logo {
      width: 120px;
    }
  
    .form-logo-container {
      margin-bottom: 15px;
    }
  }
  
  /* Pineapple Loading Modal Styles */
.loading-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-modal-content {
  background-color: white;
  padding: 24px;
  border-radius: 8px;
  width: 320px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pineapple-loader {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
}

.pineapple-svg {
  width: 100%;
  height: 100%;
}

.rotating-circle {
  animation: rotate 2s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.progress-bar-container {
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}

.progress-bar {
  height: 100%;
  background-color: #FFD700;
  width: 0%;
  transition: width 0.1s linear;
}

.loading-modal h3 {
  color: #FFD700;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}

.loading-modal p {
  color: #666;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Name field validation styles */
.was-validated .form-control:invalid, 
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

/* Phone input validation styles */
#phone {
  padding-left: 90px; /* Make room for country flag and dial code */
}

.iti {
  display: block;
  width: 100%;
}

.iti__selected-flag {
  padding: 0 10px;
  border-right: 1px solid #ced4da;
}

.iti__country-list {
  z-index: 1060; /* Make sure dropdown appears above modals */
}

/* Validation feedback for phone input */
#phone.is-valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}

#phone.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}

/* Make sure the phone input has proper spacing */
.form-control:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Add to your existing CSS */
#forgotPasswordModal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

#forgotPasswordModal .modal-body {
  padding-top: 0;
}

#forgotPasswordModal .modal-footer {
  border-top: none;
  padding-top: 0;
}

/* Password strength meter styles */
.progress {
  height: 5px;
  margin-top: 5px;
}

.progress-bar {
  transition: width 0.3s ease;
}

/* Toggle password button */
.toggle-password {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .reset-container {
      margin: 20px auto;
      padding: 0 15px;
  }
}