body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: black;
  }
  h1{
    font-size: 25px;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
  }
  form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  label {
    display: block;
    font-weight: bold;
  }
  input[type="text"], input[type="email"], select {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  input[type="radio"], input[type="checkbox"] {
    margin-right: 10px;
  }
  .inline-group {
    display: flex;
    gap: 10px;
  }
  .inline-group input[type="text"] {
    flex: 1;
  }
  button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  button:hover {
    background-color: #0056b3;
  }
  .flex-all{
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .flex{
    width: 48%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.half{
    width: 48%;
}
.equal{
    width: 30%;
}
.wrap{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.wrap-flex{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.top{
    margin-top: 50px;
}
.note{
    width: 800px;
    background-color: #fff;
    margin: 0 auto;
}
.note p{
    width: 90%;
    margin: 0 auto;
}
@media (max-width: 480px) {
  .note{
    width: 100%;
  }
}