:root {
      --primary-color: #098ccb;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f3f4f6;
    }

    .container {
      display: flex;
      min-height: 100vh;
    }

    /* LEFT SIDE */
    .left-panel {
      background-color: var(--primary-color);
      color: white;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .left-panel img {
      width: 450px;
      height: 100px;
      margin-bottom: 20px;
    }

    .left-panel h1 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .left-panel h3 {
      font-weight: normal;
      font-size: 14px;
      margin-bottom: 40px;
      text-align: center;
      line-height: 1.4;
      max-width: 400px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 30px;
      font-weight: 200;
      text-align: center;
      font-size: 12px;
    }

    /* RIGHT SIDE */
    .right-panel {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      background-color: white;
      box-shadow: -2px 0 8px rgba(0,0,0,0.05);
      position: relative;
    }

    .login-box {
      width: 100%;
      max-width: 400px;
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .mobile-logo {
      display: none;
      text-align: center;
      margin-bottom: 20px;
    }

    .mobile-logo img {
      width: 300px;
      height: 80px;
      margin-bottom: 10px;
    }

    .mobile-logo h1 {
      color: var(--primary-color);
      font-size: 22px;
    }

    .login-box h1 {
      color: var(--primary-color);
      font-size: 12px;
      text-align: center;
      margin-bottom: 5px;
    }

    .login-box h3 {
      text-align: center;
      color: #555;
      font-size: 14px;
      margin-bottom: 25px;
    }

    label {
      font-weight: 500;
      color: #333;
    }

    .input-group {
      display: flex;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 8px 12px;
      margin-top: 5px;
    }

    .input-group input {
      border: none;
      outline: none;
      width: 100%;
      padding: 8px;
      font-size: 15px;
    }

    .input-group span {
      color: #999;
      margin-right: 8px;
      font-size: 18px;
    }

    .show-password {
      cursor: pointer;
      margin-left: 8px;
    }

    .checkbox-row {
      margin: 10px 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: #555;
    }

    button {
      width: 100%;
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-signin {
      background-color: var(--primary-color);
      color: white;
    }

    .btn-signin:hover {
      opacity: 0.9;
    }

    .btn-create {
      background: none;
      color: var(--primary-color);
      border: 1px solid var(--primary-color);
    }

    .btn-create:hover {
      background-color: rgba(9,140,203,0.1);
    }

    .footer {
      text-align: center;
      margin-top: 25px;
      font-size: 12px;
      color: #777;
    }

    .footer a {
      color: var(--primary-color);
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .clock {
      font-family: monospace;
      margin-top: 8px;
    }

    @media (max-width: 768px) {
      .left-panel {
        display: none;
      }

      .right-panel {
        flex: 1;
      }

      .mobile-logo {
        display: block;
      }
      
      body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #f3f4f6;
    }

    .container {
      display: flex;
      min-height: 100vh;
    }

    /* LEFT SIDE */
    .left-panel {
      flex: 1;
      background: var(--primary);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    .left-panel img {
      width: 450px;
      margin-bottom: 20px;
    }

    .left-panel h1 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .left-panel h3 {
      text-align: center;
      font-weight: 400;
      margin-bottom: 40px;
      max-width: 400px;
      line-height: 1.5;
    }

    .features {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 400px;
    }

    .features div {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.4;
    }

    /* RIGHT SIDE */
    .right-panel {
      flex: 1;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      box-shadow: -2px 0 8px rgba(0,0,0,0.05);
    }

    .form-box {
      width: 100%;
      max-width: 520px;
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .mobile-logo {
      display: none;
      text-align: center;
      margin-bottom: 20px;
    }

    .mobile-logo img {
      width: 340px;
      margin-bottom: 10px;
    }

    .mobile-logo h1 {
      color: var(--primary);
      font-size: 22px;
    }

    /* STEP INDICATOR */
    .step-indicator {
      display: flex;
      justify-content: space-between;
      margin-bottom: 25px;
    }

    .step-item {
      text-align: center;
      flex: 1;
      font-size: 13px;
      color: #777;
      position: relative;
    }

    .step-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 2px;
      background: #ccc;
      z-index: -1;
    }

    .step-number {
      display: inline-block;
      width: 28px;
      height: 28px;
      line-height: 28px;
      border-radius: 50%;
      background: #ccc;
      color: #fff;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .active-step .step-number {
      background: var(--primary);
    }

    .active-step {
      color: var(--primary);
    }

   

    label {
      display: block;
      font-weight: 500;
      color: #333;
      margin-bottom: 5px;
    }

    input, select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
      font-size: 15px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px 20px;
    }

    .toggle {
      position: absolute;
      right: 10px;
      top: 35px;
      cursor: pointer;
      color: #777;
    }

    .input-wrapper {
      position: relative;
    }

    .btns {
      margin-top: 25px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    .btn {
      flex: 1;
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
    }

    .btn-next {
      background-color: var(--primary);
      color: #fff;
    }

    .btn-prev {
      background-color: #ccc;
    }

    .checkbox {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      font-size: 14px;
    }

    .footer {
      text-align: center;
      margin-top: 20px;
      font-size: 12px;
      color: #777;
    }

    @media (max-width: 768px) {
      .left-panel { display: none; }
      .mobile-logo { display: block; }
    }
    }