@import url("animate.css");
@import url("font-awesome-all.min.css");
:root{
    --color: #1C6296;
    --color-dark: #0d3452;
    --color-rgb: 28, 98, 150;
    --secondary: #f03135;
    --secondary-dark: #a0191c;
    --text: #212529;
}
body {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    color: var(--text);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(0deg, rgb(230, 230, 230) 0%, rgba(248,247,245,1) 100%);
    /* width: 1366px;
    height: 768px; */
    margin: 0 auto;
    overflow-y: scroll;
}
a {
    color: var(--color)
}
a:hover {
    color: var(--color-dark)
}
.qrcode{
    background: #FFF;
    width: 300px;
    box-shadow: 0px 5px 10px rgb(0,0,0,.1);
    position: relative;
}
#wrapper {
    display: flex;
    flex-shrink: 0;
    flex: 1;
    position: relative;
    max-width: 100%!important;
    padding: 8vh 5% 8vh 5%;
}

#wrapper > .row{
    position: relative;
    z-index: 1;
}
#wrapper.index{
    z-index: 0;
}
.bg-start.hide{
    top: 100%;
    opacity: 0;
}
#footer {
    flex-shrink: 0;
    z-index: 1;
}
#header{
    position: relative;
    width: 100%;
    text-align: center;
    background: #FFF;
    padding: 15px 30px 18px 30px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    border-bottom: 3px solid var(--color);
}
#logo{
    display: block;
}
#logo img{
    width: 126px;
}
.title{
    margin-left: auto ;
    margin-right: auto ;
    padding-bottom: 1rem;
    text-align: center;
    position: relative;
}
.text-color{
    color: var(--color);
}
.btn-circle{
    color: var(--bs-white);
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.btn-circle img{
    display: inline-block;
    margin: 0 auto;
    height: 50px;
    position: relative;
    z-index: 1;
    font-style: normal;
}
.btn-circle i{
    font-size: 25px;
    position: relative;
    z-index: 1;
    font-style: normal;
}
.btn-color {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
}
.btn-color:hover {
    color: #fff;
}
.btn-color:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--color-rgb), .2);
}
.btn-outline-color {
    color: var(--color);
    border-color: var(--color);
}
.btn-outline-color:hover {
    color: #fff;
    background: var(--color);
}
.btn-outline-color:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--color-rgb), .2);
}
.btn-link{
    color:var(--color);;
}
.btn-link:hover{
    color:var(--color);
}
.btn-link:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--color-rgb), .2);
}
.btn-xl{
    padding: 0.75rem 1.25rem;
    font-size: 1.5rem;
    border-radius: 0.5rem;
}
.border-color {
    border-color: var(--color);
}
label.error {
    color: var(--bs-red);
    font-size: 75%;
    z-index: 2;
    right: 0;
    left: initial;
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}
.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}

.form-check-input:checked {
    background-color: var(--color);
    border-color: var(--color);
}
.form-check-input:focus {
    border-color: var(--color);
    box-shadow: 0 0 0 .25rem rgba(var(--color-rgb), .2);
}
.senha-info{
    position: absolute;
    bottom: calc(100% + 1rem);
    padding: 1rem;
    z-index: 1;
    background: #FFF;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow:    0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow:         0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
}
.senha-info:after{  
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    bottom: -9px;
    left: 20px;
}

.senha-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

a.col{
    text-decoration: none;
    color: inherit;
}
.form-floating>.form-control-lg, 
.form-floating>.form-select-lg{
    height: calc(3.5rem + 6px);
}

/**LOADING**/
#loading{
    display: none;
    height: 100vh;
    z-index: 5000;
    background:rgba(0,0,0, .1);
    transition: opacity .5s ease-in-out, 0.2s ease margin;
    -moz-transition: opacity .5s ease-in-out, 0.2s ease margin;
    -webkit-transition: opacity .5s ease-in-out, 0.2s ease margin;
    backdrop-filter: blur(3px);
    position: fixed;
    right: 0;
    left: 0;
}
.loading-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
   justify-content: center;
    background: rgba(255,255,255,.9);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    min-width: 200px;
    min-height: 200px;
    border-radius: 0.5rem;

}
.loading-container .circle {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 10px solid rgba(255, 255, 255, 1);
    border-top-color: var(--color);
}
#loading p{
    cursor: default;
    text-align: center;
    color: var(--color);
    padding-top: 1rem;
    margin-bottom: 0;
}