.container_webmee {
  width: 85%;
  margin: auto;
  padding: 0px;
}
.form-box {
  background: #000;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: right!important;
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content:space-around;
  align-items: center;
  flex-wrap: wrap;
}
/* Base */
.form-box input,
.form-box select,
.form-box textarea,
.container_webmee :is(
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select
) {
  padding: 14px;
  background: transparent;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  width: 100%; /* padrão */
}

/* 50% */
body .container_webmee .percent50{
  width: 48%;
}

body .container_webmee .percent100{
  width: 100%;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "⌄";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background-color: #000;
}
.form-box button {
  padding: 14px;
  border: 1px solid #d4ff00;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.form-box button:hover {
  background: #d4ff00;
  color: #000;
}
.container_webmee :is(
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select
) {
 
}