﻿/* 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. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

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

/* Sticky footer styles
-------------------------------------------------- */
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;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}

/* Nav bar markup
------------------------------------------------------ */
header > nav.border-bottom {
    border-bottom: 2px solid #003953!important;
}

.input-floating-label .floating-label {
    pointer-events: none;
    background-color: #fff;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.15s;
}
 
.container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;   
    background: #f2f2f2;
    overflow: auto;
    margin-bottom: -120px !important;
}

.wrap-login {
    width: 100%;
    background: #fff;
    overflow:hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

.wrap-login .login-form {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 65px 40px 65px
}

.login-form input::-webkit-outer-spin-button,
.login-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login-form input[type=number] {
    -moz-appearance: textfield;
}

.wrap-login .login-more {
    width: 55%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .login-more {
        display: none;
    }
    .login-form {
        width: 60% !important;
        margin: auto;
        min-height: 100vh;
    }
}

/* Hover image button
--------------------------------------------------------------- */
.hover_img span.btn-link {
    position: relative;
}
.hover_img:hover {
    cursor: pointer;
    text-decoration: none;
}

    .hover_img span.btn-link span {
        position: absolute;
        top: -410px;
        left: -2px;
        display: none;
        z-index: 99;
        border: 1px solid #1861ac;
    }

    .hover_img span.btn-link:hover span {
        display: block;
    }

.signing-hand {
    background-image: url('/img/back.png');
    background-size: contain;
    background-repeat: no-repeat;
}
 