.login-left.theme-voce {
      background-color: #ff9100;
    }

    .login-left h1 {
      color: #FFFFFF;
    }

    .login-left.theme-empresas {
      background-color: #0b0f6f;
    }

    .login-left.theme-profissionais {
      background-color: #4b6fff;
    }

    #leftImage {
      transition: opacity 0.25s ease;
    }
     
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #4b6fff;
      --primary-dark: #0b0f6f;
      --primary-light: #b84dff;
      --accent: #2ec7d3;
      --text: #23324a;
      --text-light: #7d8aa5;
      --border: #d8dfea;
      --bg: #f5f7fb;
      --white: #ffffff;
      --success: #2d45c7;
      --shadow: 0 20px 50px rgba(50, 67, 109, 0.12);
    }

    body {
      font-family: 'Nunito', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(140,43,226,.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(46,199,211,.08), transparent 30%),
        var(--bg);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      color: var(--text);
    }

    .register-shell {
      width: 100%;
      max-width: 1080px;
      background: var(--white);
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: 370px 1fr;
      padding: 0;
    }

    .register-side {
      position: relative;
      padding: 42px 36px;
      background: linear-gradient(180deg, #4b6fff 0%, #0b0f6f 100%);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .register-side::before {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: .05;
      pointer-events: none;
    }

    .register-side::before {
      width: 280px;
      height: 280px;
      background: #fff;
      top: -90px;
      right: -100px;
    }

    .brand {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: .2px;
    }

    .brand-badge {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.18);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      font-size: 1.2rem;
    }

    .side-content {
      position: relative;
      z-index: 1;
      margin-top: 30px;
    }

    .side-step {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      font-size: .92rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .side-content h2 {
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .side-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255,255,255,.9);
      max-width: 310px;
    }

    .side-cards {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .mini-card {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 18px;
      padding: 16px 18px;
      backdrop-filter: blur(5px);
    }

    .mini-card strong {
      display: block;
      font-size: .98rem;
      margin-bottom: 4px;
    }

    .mini-card span {
      display: block;
      font-size: .92rem;
      color: rgba(255,255,255,.82);
      line-height: 1.5;
    }

    .register-main {
      padding: 44px 46px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-box {
      width: 100%;
    }

    .form-step {
      display: none;
      animation: fadeUp .28s ease;
    }

    .form-step.active {
      display: block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .step-top {
      margin-bottom: 26px;
    }

    .step-top h1 {
      font-size: 2.4rem;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .step-top p {
      color: var(--text-light);
      font-size: 1.02rem;
      line-height: 1.6;
    }

    .type-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 26px;
    }

    .type-card {
      border: 2px dashed var(--border);
      background: #fff;
      border-radius: 22px;
      padding: 22px 14px 18px;
      cursor: pointer;
      text-align: center;
      transition: .25s ease;
      min-height: 152px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .type-card:hover {
      transform: translateY(-3px);
      border-color: #ff9100;
      box-shadow: 0 14px 30px rgba(255, 145, 0, 0.12);
    }

    .type-card.active {
      background: linear-gradient(135deg, #ffac3f 0%, #ec8701 100%);
      border-style: solid;
      border-color: transparent;
      color: #fff;
      box-shadow: 0 18px 34px rgba(255, 145, 0, 0.22);
    }

    .type-card[data-type="empresa"]:hover {
      border-color: #01055e;
      box-shadow: 0 18px 34px rgba(1, 5, 94, 0.12);
    } 
    .type-card[data-type="empresa"].active {
      background: linear-gradient(135deg, #0810aa 0%, #01055e 100%);
      box-shadow: 0 18px 34px rgba(1, 5, 94, 0.22);
    }

    .type-card[data-type="profissional"]:hover {
      border-color: #3e6cf0;
      box-shadow: 0 18px 34px rgba(1, 5, 94, 0.12);
    } 
    .type-card[data-type="profissional"].active {
      background: linear-gradient(135deg, #3e6cf0 0%, #2b5bdd 100%);
      box-shadow: 0 18px 34px rgba(1, 5, 94, 0.22);
    }

    .type-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .type-card svg {
      width: 34px;
      height: 34px;
      stroke: currentColor;
    }

    .type-card:not(.active) .type-icon {
      color: #6f6f6f;
      background: #f7f8fb;
    }

    .type-card.active .type-icon {
      background: rgba(255,255,255,.14);
      color: #fff;
    }

    .type-card strong {
      font-size: 1rem;
      line-height: 1.35;
      font-weight: 800;
    }

    .action-row {
      margin-top: 28px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      border: none;
      outline: none;
      border-radius: 14px;
      height: 56px;
      padding: 0 28px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      transition: .25s ease;
    }

    .btn-primary {
      background: var(--success);
      color: #fff;
      min-width: 180px;
    }

    .btn-primary:hover:not(:disabled) {
      transform: translateY(-2px);
      filter: brightness(.98);
    }

    .btn-primary:disabled {
      background: #dcdde2;
      color: #a9adb7;
      cursor: not-allowed;
    }

    .btn-secondary {
      background: #edf1f7;
      color: var(--text);
    }

    .btn-secondary:hover {
      background: #e4eaf3;
    }

    .form-grid {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .field-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-group label {
      font-size: .96rem;
      font-weight: 800;
      color: var(--text);
    }

    .field-group input {
      width: 100%;
      height: 58px;
      border: 1.8px solid var(--border);
      border-radius: 16px;
      padding: 0 18px;
      font-family: inherit;
      font-size: 1rem;
      color: var(--text);
      outline: none;
      transition: .2s ease;
      background: #fff;
    }

    .field-group input:focus {
      border-color: var(--primary-light);
      box-shadow: 0 0 0 4px rgba(140, 43, 226, .09);
    }

    .selected-type-box {
      margin-top: 22px;
      padding: 14px 16px;
      border-radius: 16px;
      background: #f6f8fc;
      border: 1px solid #e4eaf3;
      color: var(--text);
      font-size: .96rem;
    }

    .selected-type-box strong {
      color: var(--primary-dark);
    }

    .login-link {
      margin-top: 26px;
      font-size: 1rem;
      color: var(--text);
      text-align: center;
    }

    .login-link a {
      color: var(--success);
      text-decoration: none;
      font-weight: 800;
    }

    .login-link a:hover {
      text-decoration: underline;
    }

    @media (max-width: 991px) {
      .register-shell {
        grid-template-columns: 1fr;
      }

      .register-side {
        padding: 30px 24px;
      }

      .register-main {
        padding: 32px 22px 36px;
      }

      .side-content p {
        max-width: none;
      }
    }

    @media (max-width: 640px) {
      .step-top h1 {
        font-size: 2rem;
      }

      .type-grid {
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      .action-row {
        flex-direction: column;
      }
    }