* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background-color: #0b0c10; /* black */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .hero {
    background: url('pics/wp.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
  }
  
  
  .form-container {
    width: 400px;
    background: #1f2833; /* navy black */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px #45a29e;
  }
  
  .form-container h2 {
    text-align: center;
    color: #66fcf1; /* green */
    margin-bottom: 20px;
  }
  
  .input-field {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #45a29e;
    color: #fff;
  }
  
  .input-field::placeholder {
    color: #aaa;
  }
  
  .submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #45a29e;
    border: none;
    color: #0b0c10;
    font-weight: bold;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #66fcf1;
  }
  
  a {
    color: #66fcf1;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
  }
  