﻿:root {
    --vrdb-color: #2C8EA9;
}

/* 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;
    background: #E1E1E1;
    /*background: #D9D9D9;*/
    font-family: 'Roboto', sans-serif;
    overflow-y: overlay;
}

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

.w-100{
    width:100% !important;
}
.text-center {
    text-align: center !important;
}
.login-box {
    margin-top: 75px;
    height: auto;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 1rem;
    padding: 2rem;
}

.login-title {
    margin-top: 15px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
}

.login-form {
    margin-top: 25px;
    text-align: left;
}
.form-icon {
    text-align: center;
    background-color: #1b6ec2;
    border-radius: 50%;
    font-size: 40px;
    color: white;
    width: 100px;
    height: 100px;
    margin: auto;
    line-height: 100px;
}
input[type=text] {
    border: none;
    border-bottom: 2px solid black;
    border-top: 0px;
    border-radius: 0px;
    
    outline: 0;
    margin-bottom: 20px;
    padding-left: 0px;
    color: #707070;
}

input[type=password] {
    border: none;
    border-bottom: 2px solid black;
    border-top: 0px;
    border-radius: 0px;
    
    outline: 0;
    padding-left: 0px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 40px;
    outline: 0px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid black;
    outline: 0;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
}

.form-control-label {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}


form i {
    margin-left: -30px;
    cursor: pointer;
}

.mr-6 {
    margin-right: 6rem !important;
}

ul > li:last-child ul {
    right: 4px !important;
    left: auto !important;
}

.f-end {
    justify-content: flex-end;
}


li:hover > ul {
    right: 0 !important;
    left: auto !important;
}

ul ul:before {
    right: 9px !important;
    left: auto !important;
}

ul ul:after {
    right: 11px !important;
    left: auto !important;
}

#main-body,
#main-body .container-fluid {
    padding-top: 0.5rem;
}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

.btn-label {
    position: relative;
    left: -13px;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 3px 0 0 3px;
}

form .btn-labeled i {
    margin-left: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.9);
}

.link {
    margin: 0 1rem;
    padding: .3rem 0!important;
    position: relative;
}

.link:hover {
    color: rgba(0,0,0,.55);
}

    .link:before {
        content: "";
        display: inline;
        width: 0;
        height: .2em;
        position: absolute;
        bottom: 0;
        background-color: var(--vrdb-color);
        transition: width .2s ease-in;
    }

    .link:focus:before,
    .link:hover:before {
        width: 100%;
    }

.file-upload {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    width: 100%;
}

    .file-upload .file-btn {
        background-color: #E1E1E1;
        border-radius: 3px 0 0 3px;
        border: 1px solid #CED4DA;
        transition: color .15s ease-in-out,
                    background-color .15s ease-in-out,
                    border-color .15s ease-in-out,
                    box-shadow .15s ease-in-out;
    }

        .file-upload .file-btn:hover {
            background-color: #CED4DA;
            border: 1px solid #CED4DA;
        }

        .file-upload .file-btn .file-btn-label {
            margin: auto;
            align-self: center;
        }

    .file-upload .file-input {
        background-color: white;
        border-radius: 0 3px 3px 0;
        border: 1px solid #ced4da;
    }

        .file-upload .file-input::placeholder {
            color: black;
        }