* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      display: flex;
      background: #f8f9fa;
      margin: 0;
    }

    .container {
      display: flex;
      width: 100%;
      min-height: 100vh;
    }

    .left-section {
      flex: 1;
      background: linear-gradient(135deg, #a8d5e2 0%, #b8dde6 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .decorative-circle-top {
      position: absolute;
      top: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
    }

    .decorative-circle-bottom {
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
    }

    .decorative-shape {
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: #f4dcc4;
      border-radius: 50% 0 0 0;
    }

    .pet-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 10;
    }

    .right-section {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      background: white;
      position: relative;
    }

    .login-container {
      width: 100%;
      max-width: 440px;
    }

    .progress-indicator {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #10b981;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
    }

    .checkmark {
      font-size: 16px;
    }

    .step-text {
      color: #9ca3af;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .logo {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 50px;
      letter-spacing: 2px;
    }

    .logo .go {
      color: #1e40af;
    }

    .logo .pets {
      color: #ef4444;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 8px;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-icon {
      position: absolute;
      left: 16px;
      color: #9ca3af;
      font-size: 18px;
    }

    .form-control {
      width: 100%;
      padding: 14px 16px 14px 48px;
      border: 2px solid #e5e7eb;
      border-radius: 50px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-control:focus {
      border-color: #f59e0b;
      box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    }

    .form-control::placeholder {
      color: #d1d5db;
    }

    .input-group {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-group-prepend {
      position: absolute;
      left: 16px;
      z-index: 2;
      color: #9ca3af;
      font-size: 18px;
    }

    .input-group .form-control {
      padding-left: 48px;
      padding-right: 48px;
    }

    .input-group-append {
      position: absolute;
      right: 12px;
      z-index: 2;
    }

    .input-group-append .btn {
      background: none;
      border: none;
      color: #9ca3af;
      cursor: pointer;
      font-size: 18px;
      padding: 4px 8px;
    }

    .input-group-append .btn:hover {
      color: #6b7280;
    }

    .text-danger {
      color: #ef4444;
      font-size: 12px;
      margin-top: 4px;
      display: block;
    }

    .custom-control {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .custom-control-input {
      margin-right: 8px;
    }

    .custom-control-label {
      font-size: 14px;
      color: #6b7280;
      cursor: pointer;
    }

    .btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      margin-top: 10px;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .btn:active {
      transform: translateY(0);
    }

    .col-md-12 {
      width: 100%;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px;
    }

    .d-flex {
      display: flex;
    }

    .justify-content-between {
      justify-content: space-between;
    }

    .mb-3 {
      margin-bottom: 1rem;
    }

    .mb-4 {
      margin-bottom: 1.5rem;
    }

    /* Icon styles */
    .icon-user::before {
      content: '👤';
    }

    .icon-lock::before {
      content: '🔒';
    }

    .mdi-lock::before {
      content: '🔒';
    }

    .mdi-eye::before {
      content: '👁️';
    }

    /* Mobile optimizations - Hide background on mobile */
    @media (max-width: 968px) {
      body {
        background: white;
      }

      .container {
        flex-direction: column;
        background: white;
      }

      /* Hide the left section completely on mobile */
      .left-section {
        display: none;
      }

      .right-section {
        padding: 30px 20px;
        background: white;
      }

      .login-container {
        max-width: 100%;
      }

      .logo {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
      }

      .step-text {
        text-align: center;
      }

      .progress-indicator {
        top: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .right-section {
        padding: 20px 15px;
      }

      .progress-indicator {
        width: 25px;
        height: 25px;
        font-size: 12px;
      }

      .step-text {
        font-size: 12px;
        margin-bottom: 20px;
      }

      .logo {
        font-size: 28px;
        margin-bottom: 30px;
      }

      .form-control {
        padding: 12px 16px 12px 48px;
        font-size: 13px;
      }

      .btn {
        padding: 12px;
        font-size: 15px;
      }

      .form-label {
        font-size: 13px;
      }
    }