﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* ========== Overriding default bootstrap vairables ========== */
:root {
    --bs-primary: #1a759f;
    --bs-fade: #a1a4b5;
    --bs-secondary: #8380b6;
}
body {
    font-family: 'Poppins', sans-serif;
}
a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

.navbar .img-thumbnail {
  border: 0;
  max-height: 42px;
  margin-top: -12px;
  margin-bottom: -10px;
  padding: 0;
}

a {
  color: #0077cc;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

html {
  position: relative;
  min-height: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}


.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
    .btn-primary:hover {
        background-color: var(--bs-secondary);
        border-color: var(--bs-secondary);
    }

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}
a.hover-primary:hover {
    color: var(--bs-secondary) !important;
}

.text-fade {
    color: var(--bs-fade);
}
/* Responsive styles Login */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 90%;
    }

    .login-image {
        display: none;
    }

    .login-form {
        padding: 20px;
    }
}
@media (max-width: 576px) {
    .login-form h2 {
        font-size: 20px;
    }

    .login-form p {
        font-size: 12px;
    }
}