@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
body{
  font-family: 'Poppins', sans-serif;
  background: #12345d url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.centered{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    box-sizing: border-box;
}
.white-bg{
    background-color: #ffffff9c;
    border-radius: .5em;
}
.topbar{
    background-color: #12345d;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 1em 0;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em;
}
.loginb{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}
form{
    margin: 1em 0;
    padding: 1em;
    width: 100%;
}
form h3{
  text-align: center;
  padding: 1em 0;
  color: #12345d;
  font-size: 1.5em;
}

.layout-login-centered-boxed{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.layout-login-centered-boxed__form{
    width: 300px;
}
.page-separator__text{
    text-align: center;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  .loading span {
    font-size: 2em;
    color: var(--verde);
  }
  .loading span strong {
    color: var(--azul);
  }
  
  .loading-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px);
    background: rgba(255, 255, 255, 0.8) url("../images/geometric-leaves.png");
    z-index: 1;
  }
  
  #loading {
    display: none;
  }
  
  .blur {
    filter: blur(10px);
  }
  
  .msg {
    padding: 1em;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    display: none;
    margin: 1em 0;
  }
  
  .success {
    background-color: rgb(120, 189, 99);
    display: block;
  }
  
  .warning {
    background-color: #fa6464;
    display: block;
  }
  .info {
    background-color: #fdf6b9;
    display: block;
    color: #12345d;
  }
.h2title{
  font-size: 1em;
  margin: .8em 0 .8em 0;
  text-align: center;
  color:#12345d;
}

.h3title{
  font-size: 1.4em;
  margin: 0 0 .2em 0;
  text-align: center;
  color:#12345d;
}
.form-label{
  color: #12345d;
}
.btn-group-lg>.btn, .btn-lg{
  width: 100%;
}
.btn-primary{
  background-color:#12345d;
  border-color: #0b1f38;
}
#download{
  width: 350px;
}
#login{
  width:70%;
}
.heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 0;
  border-bottom: 1px solid lightgrey;
  margin-bottom: 1em;
}
.form-group{
  padding: 1em 0;
}
.control-label{
  padding: .8em 0;
  font-weight: bold;
}
.js-fix-footer2{
  padding: 2em 0;
}
@media only screen and (max-width:1199px),only screen and (max-device-width:1199px){
  .centered{
    height: auto;
  }
}
@media only screen and (max-height:768px),only screen and (max-device-height:768px){
  .centered{
    height: auto;
  }
}
@media only screen and (max-width:500px),only screen and (max-device-width:500px){
  #login{
    width:95%;
  }
}