@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.shadow {
    box-shadow: 0 0 10px;
}

body {
    padding-top: 0px;
    padding-bottom: 0px;
}

html,body{
    background:#1B1C39;
    font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    text-transform: uppercase;
    letter-spacing: 4px;
}

.btn-bg-gradient{
    background: rgb(241,93,44);
    background: linear-gradient(0deg, rgba(241,93,44,1) 0%, rgba(250,163,43,1) 100%);
    color: #fff;
    border: none;
    border-radius: 25px!important;
}
.btn.active, .btn:active {
    background: linear-gradient(0deg, rgba(241,93,44,1) 0%, rgba(250,163,43,1) 100%);
}

.bg-image-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 40%;
    background-image: url("../img/bg-top.png");
    background-repeat: no-repeat;
    background-position: left top; 
}

.bg-image-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 50%;
    background-image: url("../img/bg-bottom.png");
    background-repeat: no-repeat;
    background-position: right bottom; 
}

.center-card{  
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form-signin {
    max-width: 470px!important;
}

.form-signin .form-control, .form-signin input#password {
    border-radius: 0px 25px 25px 0px;
    background: #424760;
    color:#fff;
} 

.fs-sm{
    font-size: 12px;;
}

.bar:after {
    content: '';
    width: 0;
    height: 66%;
    position: absolute;
    border: 1px solid #707070;
    top: 0;
    right: 0;
}

.form-signin .custom-control {
    padding-left: 0rem!important; 
    margin-right: 0rem!important; ; 
}

/*Add in other browser support*/
.form-signin input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #A3A5B1!important  ;
    opacity: 1; /* Firefox */
  } 

.form-signin input#password {
    margin-bottom: 0;
}

.input-group-addon {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #A3A5B1;
    text-align: center;
    background-color: #424760;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 25px 0px 0px 27px!important;
}

input#defaultLoginFormRemember {
    margin-top: 3px;
}


/* The container */
.containercb {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .containercb input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 4px;
    background-color: #424760;
  }
  
  /* On mouse-over, add a grey background color */
  .containercb:hover input ~ .checkmark {
    background-color: #424760;
  }
  
  /* When the checkbox is checked, add a blue background */
  .containercb input:checked ~ .checkmark {
    background-color: #424760;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .containercb input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .containercb .checkmark:after {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

  .warningText{
        color:red;
        display:block;
        font-size: 12px;
}

@media screen and (max-width: 992px) {
    .bar:after {
        display: none;
    }
    .fs-sm {
        font-size: 13px!important;
    }

}

@media screen and (max-width: 1024px) {
    .fs-sm{
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .fs-sm{
        font-size: 9px;
    }
}

.logo {
    max-width: 250px;
}

#downMessage {
    display: none;
    width: 80%;
    color: white;
    background-color: red;
    margin: auto;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    font-size: 17px;
}