* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        background: linear-gradient(135deg, #fcd34d 0%, #facc15 50%, #eab308 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        position: relative;
        overflow-x: hidden;
      }

      .background-blur {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 0;
      }

      .blur-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
      }

      .blur-blob-1 {
        width: 128px;
        height: 128px;
        top: 40px;
        left: 40px;
        background-color: rgba(21, 128, 61, 0.1);
      }

      .blur-blob-2 {
        width: 192px;
        height: 192px;
        bottom: 80px;
        right: 80px;
        background-color: rgba(22, 163, 74, 0.1);
      }

      .blur-blob-3 {
        width: 160px;
        height: 160px;
        top: 50%;
        left: 25%;
        background-color: rgba(253, 224, 71, 0.2);
      }

      .container {
        width: 100%;
        max-width: 448px;
        position: relative;
        z-index: 10;
      }

      .login-card {
        background: white;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow: hidden;
      }

      .card-header {
        background: linear-gradient(to right, #15803d, #16a34a);
        padding: 32px;
        text-align: center;
      }

      .logo {
        width: auto;
        height: 64px;
        margin-bottom: 16px;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }

      .header-title {
        font-size: 28px;
        font-weight: bold;
        color: white;
        margin-bottom: 8px;
      }

      .header-subtitle {
        color: rgba(209, 250, 229, 0.8);
        font-size: 14px;
      }

      .card-body {
        padding: 32px;
      }

      .form-group {
        margin-bottom: 24px;
      }

      label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
      }

      input[type="text"],
      input[type="password"],
      input[type="checkbox"] {
        font-family: inherit;
      }

      .input-wrapper {
        position: relative;
      }

      input[type="text"],
      input[type="password"] {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.2s ease;
        background-color: white;
      }

      input[type="text"]:focus,
      input[type="password"]:focus {
        outline: none;
        border-color: #16a34a;
        box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
      }

      input[type="text"]::placeholder,
      input[type="password"]::placeholder {
        color: #9ca3af;
      }

      .password-toggle {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #6b7280;
        transition: color 0.2s ease;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .password-toggle:hover {
        color: #374151;
      }

      .form-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        margin-bottom: 24px;
      }

      .checkbox-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }

      input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #16a34a;
      }

      .forgot-password {
        color: #15803d;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
      }

      .forgot-password:hover {
        color: #166534;
      }

      .login-button {
        width: 100%;
        background: linear-gradient(to right, #facc15, #eab308);
        color: #1f2937;
        font-weight: bold;
        padding: 16px;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease;
      }

      .login-button:hover {
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
        background: linear-gradient(to right, #eab308, #ca8a04);
      }

      .login-button:active {
        transform: scale(0.98);
      }

      .divider {
        margin: 24px 0;
        position: relative;
      }

      .divider-line {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #d1d5db;
      }

      .divider-text {
        position: relative;
        text-align: center;
        font-size: 14px;
        color: #9ca3af;
        background-color: white;
        padding: 0 16px;
      }

      .signup-button {
        width: 100%;
        border: 2px solid #15803d;
        color: #15803d;
        background: transparent;
        font-weight: bold;
        padding: 16px;
        border-radius: 12px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .signup-button:hover {
        background-color: rgba(21, 128, 61, 0.05);
        transform: translateY(-2px);
      }

      .signup-button:active {
        transform: scale(0.98);
      }

      .terms {
        text-align: center;
        margin-top: 24px;
        color: #1f2937;
        font-size: 14px;
      }

      @media (max-width: 480px) {
        .card-header {
          padding: 24px;
        }

        .card-body {
          padding: 24px;
        }

        .header-title {
          font-size: 24px;
        }

        .blur-blob-1 {
          width: 80px;
          height: 80px;
        }

        .blur-blob-2 {
          width: 120px;
          height: 120px;
          bottom: 40px;
          right: 40px;
        }
      }