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

    body {
      background: linear-gradient(90deg, #667eea, #203f6a);
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }


    .signup-section {
      min-height: 100vh;
      
    }

    .signup-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      padding: 20px;
      background-color: #fff;
    }

    /* Card-like form */
    .signup-form {
      background-color: #ffffff;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 400px;
    }

    .signup-form h2 {
      text-align: center;
      color: #0d6efd;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .signup-form .form-control {
      border-radius: 10px;
      padding: 12px;
    }

    .signup-form .btn {
      border-radius: 12px;
      padding: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .signup-form .btn:hover {
      transform: translateY(-2px);
    }

    /* Links */
    .signup-form p.text-center a {
      color: #0d6efd;
      font-weight: 600;
      text-decoration: none;
    }

    .signup-form p.text-center a:hover {
      text-decoration: underline;
    }

    /* Error and success messages */
    .message {
      font-size: 0.9rem;
      margin-bottom: 10px;
      color: red;
      text-align: center;
    }

    .success {
      color: green;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .signup-section img.side-image {
        height: 250px;
      }
      .signup-content {
        height: auto;
        padding: 60px 20px;
      }
    }

    .separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.separator:not(:empty)::before {
  margin-right: .75em;
}

.separator:not(:empty)::after {
  margin-left: .75em;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  padding: 10px;
  width: 100%;
  transition: 0.3s;
}

.google-btn img {
  width: 20px;
  margin-right: 10px;
}

.google-btn:hover {
  background-color: #f7f7f7;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}