.form_control {
  display: flex;
  align-items: center;
  border-radius: 12px;
  background-color: #f7f7f7;
  padding: 10px;
}

.country_code_wrapper {
  margin-right: 10px;
}

.login-box {
  border-radius: 24px;
  background: linear-gradient(
      180deg,
      rgba(154, 178, 212, 0.38) 0%,
      rgba(154, 178, 212, 0) 35.71%
    ),
    #fff;
  box-shadow: 0px 16px 18px -16px rgba(116, 106, 126, 0.12);
}

.country_code_select {
  border: none;
  background: transparent;
  font-size: 16px;
  color: #e44672;
  outline: none;
  cursor: pointer;
  width: 40%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.mobile_number_input,
.other_country_code_input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #555;
  outline: none;
}

.other_country_code_input_wrapper {
  display: flex;
  gap: 10px;
}

.other_country_code_input {
  width: 100px;
  margin-right: 20px;
  border-right: 1px solid grey;
}

.error_message {
  color: red;
  margin-top: 5px;
}
