

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Override Bootstrap's default font family with Inter */
:root {
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

h4 {
    color: lightgray;
    font-size: calc(0.975rem + .3vw);
}
.mainLogo {
    width: 200px;
}

.navbar {
    margin-bottom: 50px;
    box-shadow: -1px -2px 11px 5px lightgray;
}

.centerText {
    text-align:center;
}

.topMargin {
    margin-top:50px;
}

.cardIcon {
    width: 150px;
}

.card {
    margin-top: 20px;
}

.bg-body-tertiary {
    background-color: white !important;
}

.card {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    cursor: pointer;
}

.card-body {
    padding: 2rem 2rem !important;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

.hoverCard:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.biggerTextField {
    height: 70px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
}

.formLabelField {
    width: 75%;
    margin-left: 10rem;
    margin-right: auto;
}

.fiftyBottomMargin {
    margin-bottom: 50px;
}

.backNextRow {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.backNextRowBg {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.btn-primary:hover {
    background: gray !important;
    border-color: gray !important;
    border-radius: 0px !important;
}

.btn-primary:active {
    background: gray !important;
    border-color: gray !important;
    border-radius: 0px !important;
}

.btn-primary:focus {
    background: gray !important;
    border-color: gray !important;
    border-radius: 0px !important;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: lightgray;
    border-color: lightgray;
}

.backButton {
    border: solid 1px lightgray;
    width: 25%;
    border-radius: 0px;
    float: right;
    margin-right: 50px;
}

.addAnotherButton {
    border: solid 1px lightgray;
    border-radius: 0px;
    float: left;
}
.form-group-spacing {
    margin-bottom: 14px; /* Adjust the space as needed */
}

/* To Highlight a selected option */
.option-selected {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    border-style: solid;
    border-width: 2px;
}