  :root {
      --primary: #139B6A;
      --primary-dark: #0e7352;
      --secondary: #FFC639;
      --dark: #1e293b;
      --light: #f8fafc;
      --border: #e2e8f0;
      --gray: #6b7280;

      --colot-orange: #FF9F08;
  }

  .register-container {
      display: flex;
      min-height: 100vh;
      background: #f9fafb;
  }


  .left-panel {
      flex: 1;
      background: url(../../img/mintrace/global/slider-metales-preciosos.jpg) center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      position: relative;
      overflow: hidden;
  }

  .brand-content {
      text-align: left;
      max-width: 320px;
  }

  .brand-subtitle {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      opacity: 0.9;
  }

  .feature-list {
      margin-top: 1rem;
  }

  .feature-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 0.95rem;
  }

  .feature-item i {
      font-size: 1.2rem;
      color: #fff;
  }


  .right-panel {
      flex: 1.2;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      padding: 40px;
  }

  .form-container {
      width: 100%;
      max-width: 420px;
  }

  .back-link {
      color: #139B6A;
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 1rem;
  }

  .form-header h2 {
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

  .form-header p {
      color: #6c757d;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
  }


  .input-group {
      position: relative;
  }

  .input-icon {
      position: absolute;
      top: 50%;
      left: 12px;
      transform: translateY(-50%);
      color: #999;
  }

  .with-icon {
      padding-left: 36px !important;
  }

  .btn-register {
      width: 100%;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 1rem;
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.3s;
      margin-top: 1.5rem;
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .btn-register::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s;
  }

  .btn-register:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(19, 155, 106, 0.4);
  }

  .btn-register:hover::before {
      left: 100%;
  }

  .login-link {
      font-size: 0.9rem;
      color: #6c757d;
  }

  .login-link a {
      color: #139B6A;
      text-decoration: none;
      font-weight: 600;
  }

  .alert {
      font-size: 0.9rem;
      padding: 10px 15px;
      margin-bottom: 1rem;
  }

  .feature-item i {
      font-size: 1.25rem;
      margin-right: 1rem;
      background: rgba(255, 255, 255, 0.2);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
  }

  .brand-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: white;
  }


  .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      z-index: 1;
      font-size: 1.1rem;
  }

  .input-group {
      position: relative;
  }

  .form-control,
  .form-select {
      border: none !important;
      border-bottom: 2px solid var(--border) !important;
      border-radius: 0 !important;
      /* padding: 0.75rem 0.5rem !important; */
      font-size: 1rem !important;
      background: transparent !important;
      transition: all 0.3s !important;
  }

  .form-control:focus,
  .form-select:focus {
      border-bottom: 2px solid var(--primary) !important;
      box-shadow: none !important;
      outline: none !important;
      background: rgba(19, 155, 106, 0.02) !important;
  }

  .form-header h2 {
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

  .form-header p {
      color: #6c757d;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
  }

  .toggle-password {
      color: var(--colot-orange);
      font-size: 18px;
  }

  .toggle-password.active::before {
      content: "\f06e";
  }