:root,
[data-bs-theme=light] {
  --bs-body-color: #072643;
  --bs-body-color-rgb: 7, 38, 67;
  --bs-font-sans-serif: "Work Sans", "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.btn-primary {
  --bs-btn-bg: #0054c5;
  --bs-btn-border-color: #0054c5;
  --bs-btn-hover-bg: #00439e;
  --bs-btn-hover-border-color: #00439e;
  --bs-btn-disabled-bg: #0054c5;
  --bs-btn-disabled-border-color: #0054c5;
  --bs-btn-active-bg: #0054c5;
  --bs-btn-active-border-color: #0054c5;
}

html,
body {
    height: 100%;
}

html {
    font-size: 14px;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.form-login {
    max-width: 400px;
    padding: 15px;
}
.form-login .form-login-wrapper {
    background: #ffffff;
    border-radius: 8px;
}

    .form-login .form-floating:focus-within {
        z-index: 2;
    }

    .form-login input[type="email"] {
        margin-bottom: -1px;
        /*border-bottom-right-radius: 0;*/
        /*border-bottom-left-radius: 0;*/
    }

    .form-login input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
