@font-face {
    /**Cairo-VariableFont_slnt,wght*/
    font-family: 'Cairo';
    /* Path to your downloaded font file */
    src: url('fonts/cairo/Cairo-VariableFont.ttf') format('truetype-variations');
    /* Define the range for weight and style */
    font-weight: 200 1000;
    font-style: oblique 0deg 11deg;
    font-display: swap;
}

* {
    font-family: 'Cairo', serif !important;
    border-radius: 0 !important;
}
html {
    font-size: 14px;
    background-color: darkslateblue;
}

body {
    background-color: ghostwhite;
    height: 100%;
    min-height: 100vh;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.w-90 {
    width: 90% !important;
}
.w-95 {
    width: 95% !important;
}
.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.form-select {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}