html, body {
    height: 100%;

    font-size: 14px;
    font-family: 'Roboto',sans-serif;
}

body {
  background: url('/images/background.svg') #F3F4F6;
  background-position: bottom;
  background-repeat: no-repeat;
}

.btn-primary,.btn-secondary,.btn-danger {
   height: 40px;
   font-size: 14px;
   line-height: 20px;
}

.btn-primary {
    background-color: @color;
    border-color: @color;

    &:hover, &:focus  {
         background-color: color-mix(in srgb, @color 70%, #000000)!important;
         border-color: color-mix(in srgb, @color 70%, #000000) !important;
     }
    &:disabled {
      background-color: @color;
      border-color: @color;
    }
}

.btn-secondary {
    background-color: #E5E7EB;
    border-color: #E5E7EB;
    color: #6B7280;
    &:hover, &:focus  {
         background-color: color-mix(in srgb, #E5E7EB 85%, #000000)!important;
         border-color: color-mix(in srgb, #E5E7EB 85%, #000000) !important;
         color: #6B7280;
     }
}

.btn-link {
    color: @color;
    text-decoration: none;
    &:hover, &:focus  {
             color: color-mix(in srgb, @color 70%, #000000)!important;
             text-decoration: underline;
         }
    }

.icon-key {
     color: #6B7280;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 20px;
}

.logo {
    max-width: 100%;
    height: auto;
}

.forgot-password {
    color: @color;
    text-decoration: none;
     &:hover {
         color: color-mix(in srgb, @color 70%, #000000) !important;
         text-decoration: underline;
    }
}

.disabled {
    pointer-events: none;
    background-color: #F9F9F9;
    border-color: #E5E7EB;
    cursor: not-allowed;
}

.demo-link {
    margin-top: 20px;

    p {margin: 0}
    a {
        text-decoration: none;
        color: @color;
        &:hover {
            color: color-mix(in srgb, @color 70%, #000000) !important;
            text-decoration: underline;
       }
    }
}

.eye {
    position: absolute;
    right: 20px;
    top: 37px;
    width: 20px;
    cursor: pointer;
}

.form-label {
    color: #6B7280;
    font-size: 12px;
}

.form-control {
    font-size: 14px;
    padding: 0 20px;
    height: 40px;
}

.welcome {
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}

.card-body {
    padding: 40px;
    text-align: center !important;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: 0.5em;
}

.divider:not(:empty)::after {
  margin-left: 0.5em;
}

.delegated-strategy {
    display: block;
 }

.delegated-strategy-image {
    max-width: 150px;
    max-height: 25px;
}

.delegated-strategy-btn {
    background: transparent;
    border-color: #dee2e6;
    padding: 10px 0;
    height: 40px;
}

.sidebar {
    z-index: 100;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: white;
}

.fixed-left {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}

.nav-link {
    color: #333;
    svg {
        width: 28px;
    }
    &.active {
        color:  @color;
        font-weight: bold;
        svg {
            fill: @color;
        }
    }
}

.logout {
    color: #dc3545;
}

.page-content {
    svg {
        width: 28px;
    }
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 100px;
    @media (max-width: 768px) {
        padding: 100px 0 0 0;
    }
}

.page-title {
    color: @color;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.scrollable {
    tbody {
        display: block;
        max-height: 65vh;
        overflow-y: auto;
    }

    thead, tbody tr {
      display: table;
      width: 100%;
      table-layout: fixed;
    }
}

.btn-delete-passkey {
    border: 1px solid #dee2e6;
    border-radius: 50%;
    color: #dc3545;
    background-color: white;
    padding: 2px 4px;
   svg {
        width: 16px;
    }

    &:hover {
        background-color: #dc3545;
       svg {
            color: white;
        }
    }
}