.bab-form {
  max-width: 100%;
  /* margin: auto; */
}

.bab-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media(min-width:768px){
  .bab-row {
    flex-direction: row;
  }
}

.bab-form input,
.bab-form textarea {
  width: 100%;
  border: none!important;
  border-bottom: 1px solid #ddd!important;
  padding: 14px 0!important;
  font-size: 16px;
  outline: none !important;
}

.bab-country {
  position: relative;
}

.bab-country-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 100px!important;
  justify-content: center;
}

.bab-country-list {
  position: absolute;
  top: 50px;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  /* display: flex; */
  display: none;
  animation: fadeIn .2s ease;
  padding-inline-start: 0;
  padding: 0px 20px 0 0;
  flex-direction: column;
  height: 220px;
  overflow-y: scroll;
}

.list-country {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.bab-country-list li {
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
}

.bab-country-list li:hover {
  background: #f5f5f5;
}

.bab-submit {
  margin-top: 30px!important;
  padding: 18px 40px!important;
  border-radius: 40px!important;
  background: linear-gradient(135deg, #4b4cff, #2f2fff);
  color: white!important;
  border: none!important;
  cursor: pointer!important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.contTest {
    width: 80%;
    padding: 100px 0;
}