body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4857em;
    text-transform: none;
    padding: 0 !important;
    margin: 0;
    height: 100%;
}

input,
select {
    width: 100%;
    color: #4a4f55;
    border: 1px solid #2563eb;
    background-color: #ffffff;
    padding: 8px 16px;
    height: 40px;
    line-height: 40px!important;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
}
textarea {
    width: 100%;
    color: #4a4f55;
    border: 1px solid #2563eb;
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    resize: vertical;
}
textarea::placeholder{
    line-height: 20px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #b4b4b4 !important;
}


label {
    color: #444;
}

.checkbox-span {
    position: relative;
    padding-left: 1.7em;
    line-height: 1.4em;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.custom-checkbox {
    display: none;
}

.checkbox-span:before {
    content: '';
    position: absolute;
    left: 0;
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #2563eb;
}

.custom-checkbox:focus+.checkbox-span:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.custom-checkbox:checked+.checkbox-span:before {
    background: #2563eb;
}

.custom-checkbox:checked+.checkbox-span:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow:
        2px 0 0 white,
        4px 0 0 white,
        4px -2px 0 white,
        4px -4px 0 white,
        4px -6px 0 white,
        4px -8px 0 white;
    transform: rotate(45deg);
}

.input-group {
    margin-bottom: 18px;
}

.input-group:last-child {
    margin-bottom: 0px;
}

button {
    color: #ffffff;
    background-color: #0842c2;
    outline: none;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}
.form-output{
    position: absolute;
    bottom: 50%;
}
h2 {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.5rem;
}

.hospital-input-field{
    max-width: 300px!important;
    margin-right: 16px;
    display: block;
}
.hospital-input-grp{
    display: flex;
    grid-gap:16px;
    flex-wrap: wrap;
    align-items: center;
}
.hospital-input-grp .input-group{
}
@media (max-width: 661px){
    .hospital-input-grp{
        justify-content: space-around;
        grid-gap:0;
    }
    .hospital-input-grp .input-group{
        width:100%;
    }
    .googleForm{
        max-width: 300px;
        margin: 0 auto;
    }
    .hospital-input-field{
        margin-right: 0;
    }
}