* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
  }
  
  header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
  }
  
  .logo h1 {
    font-size: 24px;
    font-weight: bold;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
  }
  
  .container {
    text-align: left;
    padding: 20px;
    border-radius: 8px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 130px; /* Add margin to move form down */
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  label {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px; /* Add space between label and input */
  }
  
  label span {
    color: red;
  }
  
  input[type="text"] {
    padding: 10px;
    font-size: 18px;
    width: 350px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: #333;
  }
  
  input[type="text"]::placeholder {
    color: #999;
  }
  
  button {
    padding: 15px 30px;
    border: none;
    background-color: #000;
    color: white;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  button:hover {
    background-color: #333;
  }
  
  

  
  
  .wave-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .wave-container svg {
    display: block;
    width: 100%;
    height: 50%;
  }
  