* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #1f1f1f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 0;
  }
  
  .container {
    display: flex;
    width: 90%;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    margin-bottom: 40px;
  }
  
  .signup-left {
    padding: 40px;
    width: 70%;
  }
  
  .signup-right {
    width: 30%;
    background-color: #D6336C;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .illustration {
    max-width: 70%;
    height: auto;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    width: 30%;
    height: auto; /* keep natural aspect ratio */
    margin-bottom: 20px;
    background-color: transparent; /* remove gray */
  }
  
  
  h1 {
    margin: 10px 0;
  }
  
  form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 14px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    width: 100%;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  button {
    background-color: #D6336C;
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 130px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
    text-align: center;
  }
  
  button:hover {
    background-color: #b92859;
  }
  
  p {
    margin-top: 10px;
    font-size: 14px;
  }
  
  .alt-link {
    color: #D6336C;
  }
  
  a {
    font-weight: bold;
    text-decoration: none;
    color: #D6336C;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Hides extra fields by default */
  .hidden {
    display: none !important;
  }
  
  select, input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #666;
  }
  
  select option {
    color: #666;
  }
  