.d-flex{
  display:flex;
}

.flex-row{
  flex-direction:row;
}

.flex-column{
  flex-direction:column;
}


.input-icon.input-icon-right>.ace-icon {
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.start-page{
  background:var(--sidebar-bg);
  min-height:100vh;
}

.start-page .alert{
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.main-bg {
  position: relative;
  z-index: 0;
  min-height:100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-bg::before, .main-bg-pattern{
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100vw;
  min-height:100vh;
}

.main-bg:before {
  content: "";
  background-image: url(../../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.05;
}

.main-bg-pattern {
  background-image: url(../../images/pattern_1.png);
  background-repeat: repeat;
  opacity: 0.05;
}

/* START PAGE PANEL*/
.start-page-cont{
  height:100%;
  justify-content: center;
  z-index: 1;
  position: relative;
  flex-direction:column
}

.start-page-cont > img{
  display:none;
}

.start-page-card{
  width:200px;
  top:0px;
  bottom:0px;
  height: 95%;
  min-height:300px;
  position:relative;
}

.start-page-card-cont{
  position:absolute;
  background:#003761;
  width:100%;
  height:100%;
  top:0px;
  bottom:0px;
  display:flex;
  align-items: center;
  justify-content: center;
  left:-30px;
  border-radius:5px;
}

.start-page-card-cont::before {
  background-image: url(../../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: 0;
  opacity: 0.2;
}


.start-page-card-cont img{
  max-width: 160px;
  height: auto;
  object-fit: contain;
  margin: 10px;
}

.start-page-panel{
  background: var(--rgba);
  border-radius: 10px;
  padding: 20px 20px 20px 0px;
  border: 1px solid var(--main-color);
  /* box-shadow: 0px 0px 9px 1px var(--main-color)88; */
  /* transition: box-shadow 0.2s ease-in-out; */
  align-items: center;
  margin:15px;
}

.start-page-panel:hover {
  /* border: 1px solid #204866;
  box-shadow: 0px 0px 9px 1px #204866; */
}

.start-page-panel:active {
  /* border: 1px solid #3cabff;
  box-shadow: 0px 0px 9px 1px #3cabff; */
}

.start-page-panel input{
  border-radius: 5px !important;
  padding: 5px 15px !important;
  border: 1px solid var(--border) !important;
}

.start-page-panel input[type="submit"] {
  background: var(--primary-color) !important;
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  width: 100% !important;
  border: none !important;
  outline: none !important;
  padding: 10px !important;
}

.start-page-panel input[type="submit"]:hover {
  opacity:0.7;
}

.start-page-form{
  max-width: 450px;
}

.start-page-panel .toolbar{
  margin-top:10px;
}

.start-page-panel .lost-password{
  margin-top:10px;
  text-align: center;
  display:block;
}

.start-page-panel .toolbar a:hover{
  color: #3cabff !important;
  text-decoration: underline;
}

.start-page-form-headline{
  align-items: center;
  padding-bottom:15px;
  font-size: 17px;
  text-transform: uppercase;
  border-bottom:1px solid var(--primary-color);
  margin-bottom:15px;
}

.start-page-form-headline svg{
  font-size: 23px;
  margin-right: 10px;
  color: var(--primary-color);
}

@media screen and (max-width:768px) {
  .start-page-cont{
    flex-direction: column;
   align-items: center;
  }
  .start-page-cont > img{
    max-width:160px;
    display: block;
  }

  .start-page-panel{
    padding:20px;
    margin: 15px;
  }

  .start-page-card {
    display:none;
  }
  .start-page-form{
    max-width:100%;
  }
}

@media screen and (max-width: 470px) {
  input#captcha-field{
    width: 100% !important;
    margin-bottom: 10px;
  }

  span#captcha-image{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
  }
}
