/* login css */


    /* Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: #374151;
      background-color: #f9fafb;
    }
    
    /* Layout */
    .page-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: linear-gradient(135deg, #e0f2fe 0%, #c7d2fe 50%, #ddd6fe 100%);
      margin-top: 50px;
    }
    
    .card {
      display: flex;
      flex-direction: column;
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(16px);
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      width: 100%;
      max-width: 72rem;
    }
    
    @media (min-width: 768px) {
      .card {
        flex-direction: row;
      }
    }
    
    /* Navigation */
    .navbar {
      position: relative;
      background-color: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      padding: 0 1rem;
    }
    
    .nav-container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 0.5rem;
    }
    
    .nav-content {
      position: relative;
      display: flex;
      height: 5rem;
      align-items: center;
      justify-content: space-between;
    }
    
    .nav-brand {
      display: flex;
      flex-shrink: 0;
      align-items: center;
    }
    
    .nav-brand-text {
      font-weight: 700;
      color: #000;
    }
    
    .nav-links {
      display: none;
      margin-left: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .nav-links {
        display: flex;
        gap: 1rem;
      }
    }
    
    .nav-link {
      display: block;
      border-radius: 0.375rem;
      padding: 0.5rem 0.75rem;
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }
    
    .nav-link.active {
      background-color: #111827;
      color: #fff;
    }
    
    .nav-link:not(.active) {
      color: #374151;
    }
    
    .nav-link:not(.active):hover {
      background-color: #f3f4f6;
    }
    
    .nav-icons {
      display: flex;
      align-items: center;
      padding-right: 0.5rem;
    }
    
    @media (min-width: 640px) {
      .nav-icons {
        position: static;
        margin-left: 1.5rem;
        padding-right: 0;
      }
    }
    
    .notification-btn {
      position: relative;
      border-radius: 9999px;
      padding: 0.25rem;
      color: #9ca3af;
      transition: all 0.2s;
    }
    
    .notification-btn:hover {
      background-color: #f3f4f6;
      color: #111827;
    }
    
    .profile-dropdown-container {
      position: relative;
      margin-left: 0.75rem;
    }
    
    .profile-btn {
      position: relative;
      display: flex;
      border-radius: 9999px;
      transition: all 0.2s;
    }
    
    .profile-btn:focus {
      outline: 2px solid #6366f1;
      outline-offset: 2px;
    }
    
    .profile-image {
      width: 2rem;
      height: 2rem;
      border-radius: 9999px;
      background-color: #1f2937;
      outline: 1px solid rgba(255, 255, 255, 0.1);
      outline-offset: -1px;
    }
    
    .profile-dropdown {
      position: absolute;
      right: 0;
      z-index: 10;
      margin-top: 0.5rem;
      width: 12rem;
      border-radius: 0.375rem;
      background-color: #fff;
      padding: 0.25rem 0;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      outline: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.1s ease-out;
      display: none;
    }
    
    .profile-dropdown.show {
      display: block;
    }
    
    .dropdown-link {
      display: block;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      color: #374151;
      text-decoration: none;
    }
    
    .dropdown-link:hover {
      background-color: #f3f4f6;
    }
    
    .mobile-menu-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.375rem;
      padding: 0.5rem;
      color: #374151;
      transition: all 0.2s;
    }
    
    .mobile-menu-btn:hover {
      background-color: #f3f4f6;
      color: #111827;
    }
    
    .mobile-menu {
      display: none;
      padding: 0.5rem 0.5rem 0.75rem;
    }
    
    .mobile-menu.show {
      display: block;
    }
    
    .mobile-nav-link {
      display: block;
      border-radius: 0.375rem;
      padding: 0.5rem 0.75rem;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
    }
    
    .mobile-nav-link.active {
      background-color: #111827;
      color: #fff;
    }
    
    .mobile-nav-link:not(.active) {
      color: #374151;
    }
    
    .mobile-nav-link:not(.active):hover {
      background-color: #f3f4f6;
      color: #111827;
    }
    
    /* Carousel Section */
    .carousel-section {
      /* background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%); */
      color: #fff;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      /* background-image:
        linear-gradient(to bottom right, rgba(99, 102, 241, 0.6), rgba(147, 51, 234, 0.6)),
        url("https://www.fxcess.com/wp-content/uploads/2025/02/pip-forex-trading-platform.gif"); */
      background-image:
        linear-gradient(to bottom right, rgba(99, 137, 241, 0.6), rgba(27, 13, 211, 0.6)),
        url("https://www.fxcess.com/wp-content/uploads/2025/02/pip-forex-trading-platform.gif");

      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
        
      }

    .form-container-left {
    /* Gradient overlay ON TOP of the GIF */
    

    /* color: white;

    padding: 2rem;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    overflow: hidden; */
    }

    
    @media (min-width: 640px) {
      .carousel-section {
        padding: 2.5rem;
      }
    }
    
    @media (min-width: 768px) {
      .carousel-section {
        width: 50%;
      }
    }
    
    .carousel-content {
      text-align: center;
      transition: all 0.7s ease-in-out;
    }
    
    @media (min-width: 768px) {
      .carousel-content {
        text-align: left;
      }
    }
    
    .carousel-title {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    
    @media (min-width: 640px) {
      .carousel-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
      }
    }
    
    .carousel-description {
      font-size: 1rem;
      opacity: 0.9;
    }
    
    @media (min-width: 640px) {
      .carousel-description {
        font-size: 1.125rem;
      }
    }
    
    .carousel-decoration {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 8rem;
      height: 8rem;
      background-color: rgba(255, 255, 255, 0.1);
      border-top-left-radius: 9999px;
      filter: blur(40px);
    }
    
    @media (min-width: 640px) {
      .carousel-decoration {
        width: 10rem;
        height: 10rem;
      }
    }
    
    /* Form Section */
    .form-section {
      width: 100%;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    @media (min-width: 640px) {
      .form-section {
        padding: 2.5rem;
      }
    }
    
    @media (min-width: 768px) {
      .form-section {
        width: 50%;
      }
    }
    
    .form-header {
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    @media (min-width: 768px) {
      .form-header {
        text-align: left;
      }
    }
    
    .form-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1f2937;
    }
    
    @media (min-width: 640px) {
      .form-title {
        font-size: 1.875rem;
      }
    }
    
    .form-subtitle {
      color: #6b7280;
      margin-top: 0.5rem;
      font-size: 0.875rem;
    }
    
    @media (min-width: 640px) {
      .form-subtitle {
        font-size: 1rem;
      }
    }
    
    .alert {
      padding: 0.5rem;
      border-radius: 0.50rem;
      margin-bottom: 0.75rem;
      text-align: center;
      color: #fff;

      
    }
    
    .alert-error {
      background-color: #F8D7D7;
      color: #ff0000;
    }
    
    .alert-success {
      background-color: #22c55e;
    }
    
    .form {
      display: flex;
      flex-direction: column;
      /* gap: 1.25rem; */
    }
    
    .form-group {
      position: relative;
      width: 100%;
    }
    
    .form-input {
      width: 100%;
      border: 1px solid #d1d5db;
      border-radius: 0.5rem;
      padding: 0.75rem 1rem 0.75rem 1rem;
      padding-right: 2.5rem;
      font-size: 1rem;
      color: #1f2937;
      transition: all 0.2s;
    }
    
    .form-input::placeholder {
      color: #6b7280;
    }
    
    .form-input:focus {
      border-color: #6378f1;
      box-shadow: 0 0 0 3px rgba(99, 120, 241, 0.3);
      outline: 2px solid transparent;
      outline-offset: 2px;
    }
    
    .input-icon {
      position: absolute;
      right: 0.75rem;
      top: 0.875rem;
      color: #9ca3af;
    }
    
    .submit-btn {
      width: 100%;
      color: #fff;
      font-weight: 600;
      /* background-color: #6D28D2; */
      background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold-dark) 100%);
      padding: 0.75rem;
      border-radius: 0.375rem;
      font-size: 1.125rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .submit-btn:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: scale(1.02);
    }
    
    .register-link {
      text-align: center;
      color: #4b5563;
      font-size: 0.875rem;
      margin-top: 1rem;
    }
    
    .register-link a {
      color: #143fce;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }
    
    .register-link a:hover {
      text-decoration: underline;
      color: var(--secondary-gold);
    }
    
    /* Animations */
    .fade-enter {
      opacity: 0;
      transform: translateY(20px);
    }
    
    .fade-enter-active {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.7s ease-in-out;
    }
    
    .fade-exit-active {
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.7s ease-in-out;
    }
    
    /* Utility Classes */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }
    
    .hidden {
      display: none;
    }

    


    /* register form styles */

    
  /* Portwin Registration Page - Professional CSS Classes */
  
  .portwin-register-body {
    background-image: linear-gradient(to bottom right, #e0f2fe, #e0e7ff, #f3e8ff);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-top: 100px;
  }

  .portwin-register-container {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(32px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 1152px;
  }

  /* Left Section Styles */
  .portwin-form-left {
    background-image: linear-gradient(to bottom right, rgba(99, 102, 241, 0.6), rgba(147, 51, 234, 0.6)), url("/assets/img/stock-trading.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .portwin-carousel {
    transition: all 0.7s ease-in-out;
    text-align: center;
  }

  .portwin-carousel-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .portwin-carousel-desc {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .portwin-decorative-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(255, 255, 255, 0.1);
    border-top-left-radius: 9999px;
    filter: blur(32px);
  }

  /* Right Section Styles */
  .portwin-form-right {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .portwin-form-header {
    margin-bottom: 24px;
    text-align: center;
  }

  .portwin-form-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #1f2937;
  }

  .portwin-form-subtitle {
    color: #6b7280;
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .portwin-register-form {
    margin-top: 20px;
  }

  /* Form Field Containers */
  .portwin-field-container {
    position: relative;
    margin-bottom: 10px;
  }

  .portwin-input-field {
    width: 100% !important;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 40px 12px 16px;
    color: #1f2937;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    height: 50px !important;
  }

  .portwin-input-field::placeholder {
    color: #6b7280;
  }

  .portwin-input-field:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.5);
  }

  .portwin-field-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    background: transparent;
    border: none;
    pointer-events: auto;
  }

  /* Layout Groups */
  .portwin-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Submit Button */
  .portwin-submit-button {
    width: 100%;
    color: white;
    font-weight: 600;
    background-color: #6D28D2;
    padding: 12px;
    border-radius: 6px;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    margin-top: 16px;
  }

  .portwin-submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }

  .portwin-bottom-text {
    text-align: center;
    color: #4B5563;
    font-size: 14px;
    margin-top: 16px;
  }

  .portwin-login-link {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }

  .portwin-login-link:hover {
    color: #143fce;
    text-decoration: underline;
  }

  /* Animations */
  .portwin-fade-enter {
    opacity: 0;
    transform: translateY(20px);
  }

  .portwin-fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease-in-out;
  }

  .portwin-fade-exit-active {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.7s ease-in-out;
  }

  /* Responsive Design */
  @media (min-width: 640px) {
    .portwin-register-body{
      margin-top: 100px !important;
    }
    .portwin-form-left {
      padding: 40px;
    }

    .portwin-carousel-title {
      font-size: 36px;
      line-height: 40px;
      margin-bottom: 16px;
    }

    .portwin-carousel-desc {
      font-size: 18px;
      line-height: 28px;
    }

    .portwin-decorative-shape {
      width: 160px;
      height: 160px;
    }

    .portwin-form-right {
      padding: 40px;
    }

    .portwin-form-header {
      /* margin-bottom: 32px; */
      margin-bottom: 10px;
    }
    

    .portwin-form-title {
      font-size: 30px;
      line-height: 36px;
    }

    .portwin-form-subtitle {
      font-size: 16px;
      line-height: 24px;
    }

    .portwin-field-group {
      flex-direction: row;
      gap: 24px;
    }
  }

  @media (min-width: 768px) {
    .portwin-register-container {
      flex-direction: row;
    }

    .portwin-form-left {
      width: 40%;
    }

    .portwin-carousel {
      text-align: left;
    }

    .portwin-form-right {
      width: 60%;
    }

    .portwin-form-header {
      text-align: left;
    }
  }