#form {
  box-sizing: border-box;
  
  height: 100%;
  padding-top: 10px;
}

#form .formContainer {
  padding: 25px;
  width: 100%;
  min-height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#form .row {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 10px;
}
#form .row > * {
  padding-left: 5px;
  padding-right: 5px;
}
#form .formWrap {
  max-width: 550px;
}

#form .inputlabel {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
}
#form .inputlabel .label {
  font-size: 1,5em;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}
#form .inputlabel input[type='text'] {
  height: 40px;
  border: none;
  padding: 0.25em 1.3em;
}

#form .phone {
  display: flex;
  align-items: stretch;
  width: 100%;
}
#form .phone > * {
  flex: 1;
}
#form .phone .dropdown {
  flex: 0 1;
}
#form .phone .dropdown .btn {
  background-color: #3c3c3c;
  color: #fff;
  border: none;
}
#form .phone .dropdown .dropdown-toggle {
  flex-direction: row-reverse;
  justify-content: space-between;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 0.65em;
  text-align: right;
}
#form .phone .dropdown .dropdown-toggle .filter-option-inner-inner {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
#form .phone .dropdown .dropdown-toggle .filter-option-inner-inner .country {
  display: none;
}
#form .phone .dropdown .dropdown-toggle::after {
  margin-left: 0;
  margin-right: 0.255em;
}
#form .phone .dropdown .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#form .phone .dropdown .text .country {
  font-size: 0.7em;
  margin-right: 10px;
  font-weight: 600;
  color: #666;
}
#form .phone input[name='phone'] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}

#form .gender {
  text-align: center;
}
#form .gender label {
  color: #3c3c3c;
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}
#form .gender label input {
  margin-bottom: 4px;
}
#form .gender .btn {
  background-color: #fff;
  border: none;
}


#form .country .btn {
  background-color: #fff;
  border: none;
}
#form .country .dropdown-menu {
  max-width: 100%;
}
#form .country .text,
#form .country .dropdown-toggle,
#form .country .filter-option-inner-inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}
#form .country .text .countryName,
#form .country .dropdown-toggle .countryName,
#form .country .filter-option-inner-inner .countryName {
  overflow: hidden;
  text-overflow: ellipsis;
}
#form .country .text .flag-icon,
#form .country .dropdown-toggle .flag-icon,
#form .country .filter-option-inner-inner .flag-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  margin-right: 15px;
  margin-left: 10px;	
}
#form .storeContact { /* boton de enviar */
  font-weight: 800;
  text-transform: uppercase;
  background-color: transparent;
  color: #3c3c3c;
  border: 2px solid #3c3c3c;
}
