/*!*****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/(ref)/[locale]/ref-dev/(auth)/register/register.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************/
/* Page Container - Enhanced Modern UI Styles */
.register-page-container {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'okbank', sans-serif;
  position: relative;
}

.register-page-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.register-page-container > * {
  position: relative;
  z-index: 1;
}

/* Page Content */
.register-page-content {
  background: #f8f9fa;
}
  
/* Form Card - Enhanced Modern Styling */
.register-form-card {
  border: none;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(245, 80, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: visible;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.register-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f55000, #e9796d, #f55000);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.register-form-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(135deg, rgba(245, 80, 0, 0.02) 0%, rgba(233, 121, 109, 0.02) 100%);
}
  
  .form-step-indicator {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f55000 0%, #e9796d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .form-section-title {
    font-size: 1.5rem;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
  }
  
  .form-section-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
  }
  
  /* Form Styles */
  .register-form {
    padding: 2rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    
  }
  
  .form-row-account {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'okbank_med', sans-serif;
  color: #4a5568;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
  
  .input-wrapper {
    position: relative;
  }
  
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'okbank_med', sans-serif;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  transition: all 0.3s ease;
  color: #1a202c;
}

.form-input:focus {
  outline: none;
  border-color: #f55000;
  background: white;
  box-shadow: 0 0 0 0.25rem rgba(245, 80, 0, 0.1);
}
  
    .form-input.is-invalid {
      border-color: #dc3545;
      box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
    }
  
    .form-input.is-invalid:focus {
      border-color: #dc3545;
      box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
    }
  
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-family: 'okbank', sans-serif;
  color: #dc3545;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(232, 62, 140, 0.05));
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border-left: 3px solid #dc3545;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.invalid-feedback.d-block {
  display: block !important;
}

.invalid-feedback small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
  
.form-input::-moz-placeholder {
  color: #94a3b8;
  font-style: italic;
  font-family: 'okbank', sans-serif;
}
  
.form-input::placeholder {
  color: #94a3b8;
  font-style: italic;
  font-family: 'okbank', sans-serif;
}
  
  /* Password Input */
  .password-wrapper {
    position: relative;
  }
  
  .password-input {
    padding-right: 3rem;
  }
  
.password-toggle-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, rgba(245, 80, 0, 0.05), rgba(233, 121, 109, 0.05));
  border: 1px solid rgba(245, 80, 0, 0.2);
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.password-toggle-btn:hover {
  color: #f55000;
  background: linear-gradient(135deg, #f55000 0%, #e9796d 100%);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(245, 80, 0, 0.25);
}
  
  /* Checkbox */
  .form-group-checkbox {
    margin: 2rem 0 1.5rem;
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    place-items: center;
    gap: 0.75rem;
  }
  
.checkbox-input {
  width: 18px;
  height: 18px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkbox-input:checked {
  background: linear-gradient(135deg, #f55000 0%, #e9796d 100%);
  border-color: #f55000;
  box-shadow: 
    0 4px 15px rgba(245, 80, 0, 0.3),
    0 0 0 0 rgba(245, 80, 0, 0.4);
  transform: scale(1.1);
}

.checkbox-input:focus {
  box-shadow: 0 0 0 3px rgba(245, 80, 0, 0.1);
  border-color: #f55000;
}

.checkbox-input:hover {
  border-color: #f55000;
  transform: scale(1.05);
}
  
.checkbox-label {
  font-size: 0.9rem;
  font-family: 'okbank', sans-serif;
  color: #4a5568;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: #f55000;
}
  
/* Submit Button - Enhanced Modern Style */
.form-actions {
  margin: 2rem 0 1rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f55000 0%, #e9796d 100%);
  border: none;
  color: white;
  font-family: 'okbank_bold', sans-serif;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 25px rgba(245, 80, 0, 0.3),
    0 0 0 0 rgba(245, 80, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
  .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
  }
  
  .btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #e9796d 0%, #f55000 100%);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 12px 35px rgba(245, 80, 0, 0.4),
      0 0 0 8px rgba(245, 80, 0, 0.1);
  }
  
  .btn-submit:hover:not(:disabled)::before {
    left: 100%;
  }
  
  .btn-submit:active:not(:disabled) {
    transform: translateY(-1px) scale(1.01);
  }
  
  .btn-submit:disabled {
    background: #cbd5e0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }

  
  .text-primary-custom {
    color: #f55000 !important;
  }
  
  .text-primary-custom:hover {
    color: #e9796d !important;
  }
  
  
  /* Username validation styles */
  .username-container {
    position: relative;
  }
  
  .referral-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .referral-input-actions {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

.btn-generate-code {
  background: linear-gradient(145deg, rgba(245, 80, 0, 0.05), rgba(233, 121, 109, 0.05));
  border: 1px solid rgba(245, 80, 0, 0.2);
  color: #f55000;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(245, 80, 0, 0.1);
}

.btn-generate-code:hover {
  color: white;
  background: linear-gradient(135deg, #f55000 0%, #e9796d 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 80, 0, 0.25);
}
  
  .validation-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .validation-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.validation-icon.success {
  color: #28a745;
  animation: pulse 2s infinite;
}

.validation-icon.error {
  color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

.form-input.is-valid {
  border-color: #28a745;
  background: linear-gradient(145deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
  box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}
  
  /* Animation for spinner */
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Validation Message Styling */
.referral-validation-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'okbank', sans-serif;
  font-weight: 500;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.referral-validation-message.success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(32, 201, 151, 0.05));
  color: #28a745;
  border-left: 3px solid #28a745;
}

.referral-validation-message.error {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(232, 62, 140, 0.05));
  color: #dc3545;
  border-left: 3px solid #dc3545;
}

.referral-validation-message.info {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.05), rgba(73, 80, 87, 0.05));
  color: #6c757d;
  border-left: 3px solid #6c757d;
}
  
  
  /* Responsive Design */
  @media (min-width: 576px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    
    .page-title {
      font-size: 1.75rem;
    }
    
    .page-subtitle {
      font-size: 1rem;
    }
  }
  
  @media (min-width: 768px) {
    .register-page-header {
      /* Increase header padding for desktop */
    }
    
    .register-form-header {
      padding: 2.5rem 3rem 1.5rem;
    }
    
    .register-form {
      padding: 2.5rem 3rem;
    }
    
    .form-info {
      padding: 2rem 3rem;
    }
    
    .form-footer {
      padding: 2.5rem 3rem;
    }
    
    .footer-content {
      max-width: 450px;
    }
    
    .security-badge {
      flex-direction: row;
      gap: 0.5rem;
      text-align: left;
    }
    
    .form-row {
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .register-container {
      padding: 2rem;
    }
    
    .register-container.overlay-mode {
      padding: 0;
    }
    
    .register-card {
      max-width: 700px;
    }
  }
  
  @media (min-width: 992px) {
    .page-title {
      font-size: 2rem;
    }
    
    .register-header-icon {
      width: 56px;
      height: 56px;
    }
  }
  
  @media (min-width: 1200px) {
    .register-card {
      max-width: 750px;
    }
    
    .page-title {
      font-size: 2.25rem;
    }
  }
  
  /* Mobile Responsive */
  @media (max-width: 575px) {
    .page-title {
      font-size: 1.25rem;
    }
    
    .page-subtitle {
      font-size: 0.875rem;
    }
    
    .register-header-icon {
      width: 40px;
      height: 40px;
    }
    
    .register-form-card {
      border-radius: 12px;
      margin: 0 0.5rem;
    }
    
    .register-form-header {
      padding: 1.5rem 1.5rem 1rem;
    }
    
    .register-form {
      padding: 1.5rem;
    }
    
    .form-info {
      padding: 1.5rem;
    }
    
    .form-footer {
      padding: 1.5rem;
    }
    
    .footer-content {
      max-width: 100%;
    }
    
    .divider-with-text {
      margin-bottom: 1rem;
      gap: 0.75rem;
    }
    
    .divider-text {
      font-size: 0.8rem;
      padding: 0 0.375rem;
    }
    
    .footer-question {
      font-size: 0.875rem;
    }
    
    .btn-back-to-login {
      padding: 0.625rem 1.25rem;
      font-size: 0.875rem;
    }
    
    .security-badge {
      padding: 0.625rem 0.875rem;
      flex-direction: column;
      gap: 0.375rem;
      text-align: center;
    }
    
    .security-text {
      font-size: 0.75rem;
    }
    
    .form-section-title {
      font-size: 1.25rem;
    }
    
    .form-section-subtitle {
      font-size: 0.875rem;
    }
    
    .btn-submit {
      font-size: 1rem;
      padding: 0.875rem 1.5rem;
    }
  
    .register-card {
      max-width: 100%;
    }
  
    .register-card.overlay-card {
      max-width: 320px;
      width: 320px;
      transform: scale(0.75);
    }
  
    .security-note.overlay-security {
      max-width: 320px;
      width: 320px;
    }
  
    .overlay-header .h2 {
      font-size: 1.25rem;
    }
  
    .overlay-header p {
      font-size: 0.8rem;
    }
    
    .info-card {
      flex-direction: column;
      text-align: center;
    }
    
    .info-icon {
      align-self: center;
    }
  }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .security-note {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 12px;
      padding: 12px;
      margin-top: 1.5rem;
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }
  
    /* Small mobile devices */
    @media (max-width: 575px) {
      .register-card.overlay-card {
        max-width: 320px;
        width: 320px;
        transform: scale(0.75);
      }
  
      .security-note.overlay-security {
        max-width: 320px;
        width: 320px;
      }
  
      .overlay-header .h2 {
        font-size: 1.25rem;
      }
  
      .overlay-header p {
        font-size: 0.8rem;
      }
  
      .register-card {
        max-width: 100%;
      }
    }
    
    /* Medium devices (tablets) */
    @media (min-width: 576px) {
      .register-card.overlay-card {
        max-width: 380px;
        width: 380px;
        transform: scale(0.85);
      }
  
      .security-note.overlay-security {
        max-width: 380px;
        width: 380px;
      }
    }
  
    @media (min-width: 768px) {
      .register-container {
        padding: 2rem;
      }
      
      .register-container.overlay-mode {
        padding: 0;
      }
      
      .register-card {
        max-width: 700px;
      }
  
      .register-card.overlay-card {
        max-width: 450px;
        width: 450px;
        transform: scale(0.9);
      }
  
      .overlay-card .p-4 {
        padding: 1.25rem !important;
      }
  
      .overlay-card .p-md-5 {
        padding: 1.25rem !important;
      }
      
      .security-note {
        max-width: 700px;
      }
  
      .security-note.overlay-security {
        max-width: 450px;
        width: 450px;
      }
    }
  
    /* Large devices (desktops) */
    @media (min-width: 992px) {
      .register-card.overlay-card {
        max-width: 500px;
        width: 500px;
        transform: scale(0.95);
      }
  
      .security-note.overlay-security {
        max-width: 500px;
        width: 500px;
      }
    }
    
    @media (min-width: 1200px) {
      .register-card {
        max-width: 750px;
      }
  
      .register-card.overlay-card {
        max-width: 550px;
        width: 550px;
        transform: scale(1);
      }
  
      .overlay-card .p-4 {
        padding: 1.5rem !important;
      }
  
      .overlay-card .p-md-5 {
        padding: 1.5rem !important;
      }
      
      .security-note {
        max-width: 750px;
      }
  
      .security-note.overlay-security {
        max-width: 550px;
        width: 550px;
      }
    }
  
    /* Extra large devices */
    @media (min-width: 1400px) {
      .register-card.overlay-card {
        max-width: 600px;
        width: 600px;
      }
  
      .security-note.overlay-security {
        max-width: 600px;
        width: 600px;
      }
    }
  
    /* Step1 Page Styling */
    .w-adj {
      width: 100%;
      max-width: 750px;
    }
  
    .noglow {
      box-shadow: none !important;
    }
  
    .noglow:focus {
      box-shadow: none !important;
      border-color: #f55000 !important;
    }
  
    .flr {
      position: relative;
    }
  
    .flr select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1rem;
      padding-right: 3rem;
    }
  
/* Tab Navigation Styles */
  .tab-navigation {
    margin-bottom: 2rem;
  }

  .tab-navigation .nav-pills {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .tab-navigation .nav-link {
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .tab-navigation .nav-link:hover {
    color: #495057;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
  }

  .tab-navigation .nav-link.active {
    background: linear-gradient(135deg, #f55000, #ff6b35);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 80, 0, 0.3);
    transform: translateY(-2px);
  }

  .tab-navigation .nav-link.completed {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  }

  .tab-navigation .nav-link.completed:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
    transform: translateY(-2px);
  }

  .tab-navigation .nav-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .tab-navigation .nav-link:disabled:hover {
    background: transparent;
    color: #6c757d;
    transform: none;
  }

  .tab-navigation .nav-link .d-flex {
    gap: 8px;
  }

  /* Tab Content Styles */
  .tab-content {
    min-height: 400px;
  }

  .tab-content form {
    animation: fadeInUp 0.5s ease-out;
  }
  
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  
  
    /* Form Control Overrides */
    .form-control {
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 1rem;
      font-family: 'okbank', sans-serif;
      transition: all 0.2s ease;
    }
  
    .form-control:focus {
      border-color: #f55000;
      box-shadow: 0 0 0 3px rgba(245, 80, 0, 0.1);
    }
  
    .form-control.border-0:focus {
      border-color: #f55000 !important;
      box-shadow: 0 0 0 3px rgba(245, 80, 0, 0.1) !important;
    }
  
    /* Button Styles */
    .btn-primary {
      background-color: #f55000;
      border-color: #f55000;
    }
  
    .btn-primary:hover {
      background-color: #e04a00;
      border-color: #e04a00;
    }
  
    .btn-primary:focus {
      background-color: #e04a00;
      border-color: #e04a00;
      box-shadow: 0 0 0 3px rgba(245, 80, 0, 0.25);
    }
  
    .btn-primary:disabled {
      background-color: #6c757d;
      border-color: #6c757d;
    }
  
    /* Responsive Tab Navigation */
    @media (max-width: 768px) {
      .tab-navigation .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
      }
  
      .tab-navigation .nav-link .d-flex {
        flex-direction: column;
        gap: 4px;
      }
  
      .tab-navigation .nav-link svg {
        width: 16px;
        height: 16px;
      }
    }
  
    /* Progress Indicator */
    .tab-navigation .nav-link.completed::after {
      content: '✓';
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
    }

/* Password Strength Indicator */
.password-strength {
  margin-top: 0.5rem;
}

.password-strength .progress {
  background-color: #e9ecef;
  border-radius: 2px;
}

.password-strength .progress-bar {
  transition: width 0.3s ease;
  border-radius: 2px;
}

.password-strength .bg-danger {
  background-color: #dc3545 !important;
}

.password-strength .bg-warning {
  background-color: #ffc107 !important;
}

.password-strength .bg-info {
  background-color: #17a2b8 !important;
}

.password-strength .bg-success {
  background-color: #28a745 !important;
}

/* Password Requirements */
.password-requirements {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.password-requirements .requirements-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
  font-family: 'okbank_med', sans-serif;
}

.password-requirements .requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-requirements .requirements-list li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.password-requirements .requirements-list li:before {
  content: '✗';
  color: #dc3545;
  font-weight: bold;
  margin-right: 0.5rem;
  transition: color 0.3s ease;
}

.password-requirements .requirements-list li.valid {
  color: #28a745;
}

.password-requirements .requirements-list li.valid:before {
  content: '✓';
  color: #28a745;
}  
/*!*******************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/(ref)/[locale]/ref-dev/components/tnc.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************/
/* TNC Page Styles */
.tnc-page-container {
  padding: 2rem 0;
  min-height: 50vh;
  font-family: 'okbank', sans-serif;
}

.tnc-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.btn-view-tnc {
  background: linear-gradient(135deg, #f55000, #ff6b35);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn-view-tnc:hover {
  background: linear-gradient(135deg, #e04a00, #e55a2b);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 80, 0, 0.3);
}

/* Modal Styles */
.tnc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 20px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.tnc-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tnc-modal-header {
  padding: 24px 32px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px 16px 0 0;
}

.tnc-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.tnc-modal-close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tnc-modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.tnc-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  position: relative;
}

.tnc-content {
  padding: 32px;
  line-height: 1.6;
  color: #374151;
}

.tnc-section {
  margin-bottom: 2rem;
}

.tnc-section:last-child {
  margin-bottom: 0;
}

.tnc-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f55000;
  font-family: 'okbank_med', sans-serif;
}

.tnc-section-content {
  font-size: 0.95rem;
  line-height: 1.7;
}

.tnc-section-content ul {
  margin: 0;
  padding-left: 1.5rem;
}

.tnc-section-content li {
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.tnc-section-content ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.tnc-section-content ul ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.tnc-modal-footer {
  padding: 20px 32px;
  border-top: 1px solid #e5e7eb;
  background: #f8f9fa;
  border-radius: 0 0 16px 16px;
  display: flex;
  justify-content: center;
}

.tnc-modal-close-btn {
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.tnc-modal-close-btn.disabled {
  background: linear-gradient(135deg, #9ca3af, #d1d5db);
  cursor: not-allowed;
  opacity: 0.7;
}

.tnc-modal-close-btn.enabled {
  background: linear-gradient(135deg, #f55000, #ff6b35);
  cursor: pointer;
}

.tnc-modal-close-btn.enabled:hover {
  background: linear-gradient(135deg, #e04a00, #e55a2b);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 80, 0, 0.3);
}

.tnc-modal-close-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Floating Scroll Down Button */
.tnc-scroll-down-btn {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #f55000, #ff6b35);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(245, 80, 0, 0.4);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  font-size: 0.9rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
}

.tnc-scroll-down-btn:hover {
  background: linear-gradient(135deg, #e04a00, #e55a2b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 80, 0, 0.5);
}

.tnc-scroll-icon {
  width: 20px;
  height: 20px;
  animation: arrowBounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(2px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .tnc-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .tnc-modal-header {
    padding: 20px;
  }
  
  .tnc-modal-title {
    font-size: 1.25rem;
  }
  
  .tnc-content {
    padding: 20px;
  }
  
  .tnc-section-title {
    font-size: 1.1rem;
  }
  
  .tnc-section-content {
    font-size: 0.9rem;
  }
  
  .tnc-modal-footer {
    padding: 16px 20px;
  }
  
  .tnc-scroll-down-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin-bottom: 15px;
  }
  
  .tnc-scroll-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .tnc-modal-overlay {
    padding: 10px;
  }
  
  .tnc-modal-content {
    margin: 5px;
  }
  
  .tnc-modal-header {
    padding: 16px;
  }
  
  .tnc-content {
    padding: 16px;
  }
  
  .tnc-section-content ul {
    padding-left: 1.2rem;
  }
  
  .tnc-scroll-down-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin-bottom: 10px;
  }
  
  .tnc-scroll-icon {
    width: 16px;
    height: 16px;
  }
  
  .tnc-modal-close-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/(ref)/[locale]/ref-dev/components/SelectInputSearch.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************/
.react-select-container {
  width: 100%;
  
}

.react-select-container .react-select__control {
  border: 1px solid #ced4da;
  border-radius: 12px;
  min-height: 38px;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  font-size: 1rem;
  font-family: 'okbank_med', sans-serif;
  color: #1a202c;
  transition: all 0.3s ease;
}

.react-select-container .react-select__control:hover {
  border-color: #86b7fe;
}

.react-select-container .react-select__control--is-focused {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}

.react-select-container.is-invalid .react-select__control {
  border-color: #dc3545;
}

.react-select-container.is-invalid .react-select__control--is-focused {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.react-select-container .react-select__value-container {
  padding: 0.75rem 1rem;
}

.react-select-container .react-select__input-container {
  margin: 0;
  padding: 0;
  color: #212529;
}

.react-select-container .react-select__single-value {
  color: #212529;
  margin: 0;
}

.react-select-container .react-select__placeholder {
  color: #94a3b8;
  font-style: italic;
  font-family: 'okbank', sans-serif;
}

.react-select-container .react-select__indicator-separator {
  background-color: #ced4da;
}

.react-select-container .react-select__dropdown-indicator {
  color: #6c757d;
}

.react-select-container .react-select__dropdown-indicator:hover {
  color: #212529;
}

.react-select-container .react-select__menu {
  z-index: 9999;
  margin-top: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.react-select-container .react-select__menu-list {
  padding: 0.5rem 0;
  max-height: 300px;
}

.react-select-container .react-select__option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  background-color: transparent;
  color: #212529;
}

.react-select-container .react-select__option:hover {
  background-color: #e9ecef;
}

.react-select-container .react-select__option--is-selected {
  background-color: #0d6efd;
  color: #fff;
}

.react-select-container .react-select__option--is-focused {
  background-color: #e9ecef;
}

.react-select-container .react-select__option--is-focused.react-select__option--is-selected {
  background-color: #0d6efd;
}

/* Custom scrollbar for menu */
.react-select-container .react-select__menu-list::-webkit-scrollbar {
  width: 8px;
}

.react-select-container .react-select__menu-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.react-select-container .react-select__menu-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.react-select-container .react-select__menu-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}


