body {
  margin: 0;
}

.register-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
  }
  
  .register-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 2px dashed #d4b5ff;
    padding: 30px;
    border-radius: 8px;
  }
  
  .register-form select,
  .register-form input {
    padding: 12px;
    font-size: 1.1rem;
    border: none;
    background-color: #e6e6e6;
    font-family: inherit;
  }
  
  .register-form select:focus,
  .register-form input:focus {
    outline: 2px solid #888;
  }
  
  .login-hint {
    font-size: 1rem;
    margin: 10px 0;
  }
  
  .login-hint a {
    color: black;
    text-decoration: underline;
  }
  
  .register-btn {
    padding: 12px;
    background-color: #e6e6e6;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s;
  }
  
  .register-btn:hover {
    background-color: #ccc;
  }
  
  @media (max-width: 768px) {
    .register-container {
      margin: 60px auto;
    }
  
    .register-form {
      padding: 20px;
    }
  
    .register-form select,
    .register-form input,
    .register-btn {
      font-size: 1rem;
    }
  }  