html,
body {
  height: 100%;
}

.form-row {
    display: flex; /* Makes the child elements sit side by side */
    justify-content: space-between; /* Adds space between the inputs */
    gap: 20px; /* Optional: Adds a gap between the fields (modern alternative to margins) */
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


.phone-input-wrapper {
    display: flex;
    /* Optional: Controls alignment along the cross axis (vertically) */
    align-items: center;
    /* Optional: Adds space between the elements */
    gap: 10px;
    /* Optional: Limits the total width of the container */
    max-width: 300px;
}

/* Optional: Basic styling for better appearance */
#country-code, #MobileNumber {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Optional: Make the input field take up the remaining available space */
#MobileNumber {
    flex: 1;
}