.inputContainer {
  position: relative;
  height: 48px;
  width: 100%;
  margin-bottom: 17px;
}

.inputPropio {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #dadce0;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 15px;
  outline: none;
  background: none;
  z-index: 1;
  box-sizing: border-box;
}

.label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background-color: white;
  color: #dadce0;
  font-size: 16px;
  transition: 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.inputPropio.has-content + .label,
.inputPropio:focus + .label {
  top: -1px;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
  color: rgb(68, 68, 68);
  background: rgb(1, 250, 254);
  border-radius: 5px;
  padding: 0 5px;
  z-index: 10;
}

.inputPropio:focus {
  border: 2px solid rgb(1, 250, 254);
}

.selectContainer {
  position: relative;
  height: 48px;
  width: 100%;
  margin-bottom: 17px;
}

.selectPropio {
  width: 100%;
  height: 100%;
  border: 1px solid #dadce0;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 15px;
  appearance: none;
  background: none;
  outline: none;
  z-index: 1;
  box-sizing: border-box;
  cursor: pointer;
}

.selectPropio:focus {
  border: 2px solid rgb(1, 250, 254);
}

.labelSelect {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background-color: white;
  color: #dadce0;
  font-size: 16px;
  transition: 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.selectPropio.has-content + .labelSelect,
.selectPropio:focus + .labelSelect {
  top: -1px;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
  color: rgb(68, 68, 68);
  background: rgb(1, 250, 254);
  border-radius: 5px;
  padding: 0 5px;
  z-index: 10;
}
