    body, html {
      height: 100%;
      margin: 0;
    }
    .signup-container {
      height: 100%;
      display: flex;
    }
    .left-panel {
      background: linear-gradient(135deg, #e8e2d4 0%, #f0ebe0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .right-panel {
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .signup-form {
      width: 100%;
      max-width: 400px;
    }
    .form-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2d3748;
      margin-bottom: 0.5rem;
      text-align: center;
    }
    .form-control {
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 12px 16px;
      margin-bottom: 1rem;
    }
    .form-control:focus {
      border-color: #f7931e;
      box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
    }
    .create-btn {
      background: #4a5568;
      border: none;
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      width: 100%;
      font-weight: 500;
      margin-bottom: 1.5rem;
      transition: background 0.2s;
    }
    .create-btn:hover {
      background: #f7931e;
    }
    .login-link {
      text-align: center;
      color: #718096;
    }
    .login-link a {
      color: #f7931e;
      text-decoration: none;
    }
    .login-link a:hover {
      text-decoration: underline;
    }
    .btn-google { 
      background: #fff;
      border: 1px solid #ddd; 
      color: #444;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 8px;
      transition: all 0.2s;
    } 
    .btn-google img {
      height: 18px;
      margin-right: 8px;
    }
    .btn-google:hover {
      background: #f7fafc;
      border-color: #cbd5e0;
    }