/* New Style Login */

.container-login {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.col-left {
  display: flex;
  width: 30%;
  flex-direction: column;
  padding: 20px 30px;
  min-width: 500px;
}
.col-right {
  display: flex;
  width: 70%;
}
.img-bk-login {
  position: relative;
  width: 100%;
  background-size: cover;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
.img-bk-login:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.header-login {
  display: flex;
  justify-content: space-between;
}
.img-login {
  display: flex;
  padding-top: 15%;
  padding-bottom: 15%;
  justify-content: center;
}
.label-login {
  font-size: 12px;
  color: rgb(160, 160, 160);
}
.input-login {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  padding-left: 10px;
}
.button-login {
  width: 100%;
  height: 40px;
  background-color: #f01000;
  color: white;
  border-radius: 5px;
  border: 0px;
}
.link-login {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-start;
}
.link-color-login {
  color: #003bfc;
}
.footer-login {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
}

button {
  cursor: pointer;
}

html,
body {
  height: 100%;
}

#root {
  height: 100%;
}