.form .row {
  padding: 0;
  margin: 0;
  width: 100%;
}
.form  h3 {
  color: #ffffff;
  font-size: 35px;
  text-align: center;
}
.form  p {
  text-align: center;
  color: #d7d8d9;
  font-size: 10px;
}
.form .bg-input {
  background-color: #24262b;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form input {
  background-color: #24262b;
  color: #ffffff;
  border: unset;
  border: transparent 1px solid;
  outline: none;
  width: 100%;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #d7d8d9;
  font-size: 13px;
  text-align: right;
}
.form textarea {
  background-color: #24262b;
  color: #ffffff;
  border: unset;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}
.form .bg-input .form button i {
  font-size: 10px;
}
.form .textearea .bg-input{
  align-items: start;
}
@media (min-width: 768px) {
  .form h3 {
    font-size: 45px;
  }
  .form  p {
    font-size: 15px;
  }
}
