
  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0c0e14;
    color: #ffffff;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  .logo {
    font-size: 2em;
    font-weight: bold;
    color: #31d0aa;
    display: flex;
    align-items: center;
  }
  .logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #31d0aa;
  }
  main {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .registration-form {
    width: 60%;
    background-color: #1a1d26;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #31d0aa;
  }
  form {
    display: flex;
    flex-direction: column;
  }
  label {
    margin-top: 15px;
    margin-bottom: 5px;
  }
  input, textarea, select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #31d0aa;
    background-color: #0c0e14;
    color: #ffffff;
    font-size: 1em;
  }
  button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #31d0aa;
    color: #0c0e14;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: #25a586;
  }
  .benefits {
    width: 35%;
    background-color: #1a1d26;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .benefits h2 {
    color: #31d0aa;
    margin-bottom: 20px;
  }
  .benefits ul {
    padding-left: 20px;
  }
  .benefits li {
    margin-bottom: 10px;
  }
  .mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
  }