@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #404040;
  line-height: 1.4;
  background: #fff;
  font-weight: normal;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  color: #10393c;
  transition: all 0.3s;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

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

:focus {
  outline: none !important;
  box-shadow: none !important;
}

.logo {
  display: flex;
  flex-direction: column;

  align-items: center;
  grid-gap: 10px;
  padding: 4px;
}

.logo img {
  width: 160px;
}

.logo .content {
  text-align: center;
}

.logo .content h1 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 5px;
  line-height: 27px;
  margin-top: 5px;
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.login .box_login {
  background: #fff;
  padding: 20px;
  z-index: 2;
  position: relative;
  max-width: 420px;
  border-radius: 3px;
  color: #333;
  margin: 30px;
}

.login .box_login .btn {
  background: #004890;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 700;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.login .box_login .btn::after {
  background: #fff;
  content: "";
  height: 255px;
  left: -175px;
  opacity: 0.1;
  position: absolute;
  top: -150px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 120px;
  z-index: 10;
}

.login .box_login .btn:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.logo img {
  max-width: 100%;
  width: 330px;
}
.login .box_login {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 900px;
  flex-direction: row;
  padding: 0;
}
.logo .content {
  padding: 50px;
  border-left: 1px solid #e0e0e0;
}
.logo .content h1 {
  font-size: 24px;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media only screen and (max-width: 600px) {
  .login .box_login {
    flex-direction: column;
  }
  .logo .content {
    border: none;
  }
  .logo .content h1 {
    font-size: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  .logo .content {
    padding: 0 30px;
  }
  .logo img {
    width: 250px;
  }

}


