body {
    background: #F0F0F4;
    font-family: 'Poppins', sans-serif;
    margin: 0;
  }
  
  .signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .signup-container {
    width: 544px;
    padding: 48px 40px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.50);
  }
  
  .signup-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: #101136;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .signup-container .subheading {
    font-size: 17px;
    color: #101136;
    text-align: center;
    margin-bottom: 32px;
  }
  
  form label {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #101136;
  }
  
  form input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .signup-btn {
    width: 100%;
    height: 56px;
    background: #101136;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
  }
  
  .signup-btn:hover {
    background: #1A1A3D;
  }
  
  .login-link {
    text-align: center;
    font-size: 14px;
    margin-top: 16px;
  }
  
  .login-link a {
    color: #0197FB;
    text-decoration: underline;
  }
  
