

/* ------------------------------
   Global styles
---------------------------- */

html, body, div, span, applet, object, iframe,

h1, h2, h3, h4, h5, h6, p, blockquote, pre,

a, abbr, acronym, address, big, cite, code,

del, dfn, em, img, ins, kbd, q, s, samp,

small, strike, strong, sub, sup, tt, var,

b, u, i, center,

dl, dt, dd, ol, ul, li,

fieldset, form, label, legend,

table, caption, tbody, tfoot, thead, tr, th, td,

article, aside, canvas, details, embed,

figure, figcaption, footer, header, hgroup,

menu, nav, output, ruby, section, summary,

time, mark, audio, video {

  margin: 0;

  padding: 0;

  border: 0;

  font-size: 100%;

  font: inherit;

  vertical-align: baseline; }



article, aside, details, figcaption, figure,

footer, header, hgroup, menu, nav, section {

  display: block; }



body {

  line-height: 1; }



ol, ul {

  list-style: none; }



blockquote, q {

  quotes: none; }



blockquote:before, blockquote:after,

q:before, q:after {

  content: '';

  content: none; }



table {

  border-collapse: collapse;

  border-spacing: 0; }



body {

  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;

  line-height: 28px;
  color: #677485;

  letter-spacing: 0; }



img {

  max-width: 100%; }



a,

a:hover,

a:focus {

  cursor: pointer !important;

  outline: none;

  text-decoration: none; }



h1,

h2,

h3,

h4,

h5,

h6 {

 font-family: "Poppins", sans-serif;
  font-weight: 400;
  
  color: #677485;

  margin: 0;

  padding: 0; }



ul, li {

  margin: 0;

  padding: 0;

  list-style: none; }



strong {

  font-weight: 700; }


/*login page style*/
.login-page-wrap{
  background-image: url(../img/login-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.login-page-wrap::after{
  content: '';
  background-image: url(../img/shape.png);
  background-repeat: no-repeat;
  background-position:left;
  background-size: cover;
  max-width: 50%;
  height: 100%;
  width: 100%;
  min-width: 740px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.login-content-inner{
  max-width: 50%;
  min-width: 740px;
  margin-left: auto;
  text-align: center;
  
  padding: 84px 20px;
  height: 100%;
  position: relative;
  z-index: 12;
}
.login-content-inner .logos img{
  display: block;
  margin: auto;
}
.login-content-inner .logos h3{
  font-weight: 400;
  font-size: 50px;
  line-height: 55px;
  color: #2A618A;
}
.login-content-inner .login-form{
  max-width: 540px;
  margin:0 auto;
  padding-top: 30px;
}

.single-field{
  text-align: left;
  margin-bottom: 25px;
}
.single-field label{
  font-size: 26px;
  line-height: 39px;
  font-weight: 400;
}
.single-field .form-control{
  border: 2.5px solid #677485;
  outline: 0;
  box-shadow: unset;
  padding: 15px;
  padding-left: 30px;
  border-radius: 30px;
  font-size: 20px;
  color: #677485;
}
.login-content-inner .login-form a{
  font-size: 18px;
  line-height: 27px;
  color: #677485;
  text-decoration: underline;
  font-weight: 400;
}
.btn-submit{
  background: #0A1C32;
  color: #fff;
  border-radius: 30px;
  font-size: 30px;
  line-height: 45px;
  border: 1px solid #0A1C32;
}
.btn-submit:hover{
  background: transparent;
  color: #0A1C32;
}
.buttons-sb{
  margin-top: 30px;
}
.buttons-sb p{
  margin-top: 35px;
}
@media (max-width:991px){
  
  .login-content-inner{
    min-width: 600px;
  }
  .login-page-wrap::after{
    min-width: 700px;
  }
}
@media (max-width:767px){
  .login-page-wrap::after{
    min-width: 100%;
    max-width: 100%;
    background: #fff;
  }
  .login-content-inner{
    min-width: 100%;
    max-width: 100%;
    padding: 40px 20px;
  }
  .login-content-inner .logos h3{
    font-size: 36px;
    line-height: 110%;
  }
  .btn-submit,
  .single-field label{
    font-size: 20px;
    line-height: 30px;
  }
  .login-content-inner .login-form a{
    font-size: 16px;
  }
}