﻿/* 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. */

@import "_variables.css";
/* import components first */
@import "components/buttons.css";
@import "components/icons.css";
@import "components/inputs.css";
@import "components/links.css";
@import "components/common.css";
@import "components/external-login.css";
@import "components/navbar.css";
@import "components/nav-pills.css";
@import "components/seperator.css";


/* import pages*/
@import "pages/account-manage.css";



.btn-primary {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color-dark);
}

.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;
}

img.login_button {
    max-width: 200px;
    width: 200px;
}

span.label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.circle {
  width: 40px;
  height: 40px;
  background-color:  lightsteelblue;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-text {
  text-align: center;
}

.login-logo > .icon-banner {
  max-width: 300px;
}

/* Hide valid validation summaries until there is an actual error on the page */
.validation-summary-valid { display: none; }

/* hides for users, but is visible to screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.cursor-pointer {
  cursor: pointer !important;
}