@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Poppins:400,500&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}


body{
    background: #38578E;
}

@media (max-width: 768px) {
  .bg-img {
    background-size: contain;
  }
}

.content{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    text-align: center;
    padding: 40px 32px;
    height: 570px;
    width: 370px;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,1);
    box-shadow: -1px 4px 28px 0px rgba(0,0,0,0.75);
}

.content header{
  color: #15839D;
  font-size: 33px;
  font-weight: 800;
  margin: 0 0 25px 0;
  font-family: 'Montserrat',sans-serif;
}



.space{
  margin-top: 16px;
}

.show {
    position: absolute;
    right: 13px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}




.login{
  color: white;
  margin: 20px 0;
  font-family: 'Poppins',sans-serif;
}

.links{
  display: flex;
  cursor: pointer;
  color: white;
  margin: 0 0 20px 0;
}

.links i{
  font-size: 17px;
}

i span{
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: 'Poppins',sans-serif;
}



/* герб и ссылка на министерство*/
a {
    text-align: center;
    color: #BC983A;
    font-size: 17px;
    text-shadow: 1px 1px 2px #FFF;
    text-decoration: none;
    font-family: "SwiftCExtraBold";
    font-style: normal;
    font-weight: bold;
    font-variant: normal;
    font-stretch: normal;
    text-transform: uppercase;
    padding-left: 10px;
    padding-bottom: 35px;
}

a:hover {
    color: #BC983A;
    text-decoration: none;
}



/* Стили для кнопки "Войти" */
.field input[type="submit"] {
  background: #15839D;
  border: 1px solid #15839D;
  color: #E8F0FE;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.field input[type="submit"]:hover {
  filter: brightness(0.9);

}

.field input[type="submit"]:active {
  transform: scale(0.95);
  filter: brightness(0.8);
}

.field input{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  color: #222;
  font-size: 16px;
  font-family: 'Poppins',sans-serif;
}

.field input#login, .field input#password{
    padding-left: 20px;
}


.field{
  position: relative;
  height: 45px;
  width: 100%;
  display: flex;
  background: white;
}

.field span{
  color: #E8F0FE;
  width: 52px;
  line-height: 45px;
  border-right: 2px solid #E8F0FE;
}


.fa-user, .fa-lock {
    background: #15839D;
}


input#login, input#password{
    border: 1px solid #15839D;
    background: rgba(21, 131, 157, 0.05);
}