@font-face {
  font-family: "font-normal";
  src: url("../font/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "font-bold";
  src: url("../font/Roboto-Bold.ttf") format("truetype");
}

body {
  font-family: "font-normal";
  margin: 0;
  overflow-x: hidden;
}
.font-bold {
  font-weight: bold;
}
.container {
  position: relative;
  display: flex;
  width: 100%;
  color: #fff;
}
.logo-wrapper {
  display: block;
  margin: 0 auto;
  width: fit-content;
  position: relative;
}
.drop-water {
  width: 150px;
}
.logo-full {
  width: 120px;
  position: absolute;
  bottom: 55px;
  left: 15px;
}

.title-login {
  color: #fff;
  font-size: 1.2rem;
  margin: 20px 0px 5px;
}
.area-form {
  width: 600px;
  min-height: 100vh;
  background-color: #000000;
  box-shadow: 4px 0 6px 0 rgba(0, 0, 0, 0.16);
  z-index: 100;
  height: 100%;
  position: relative;
  font-size: 1.1rem;
}

.area-img {
  width: calc(100% - 600px);
}

.border-image {
  height: 103%;
  width: 470px;
}
.bg-border {
  position: absolute;
  right: -240px;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.area-wrapper {
  padding: 0px 120px 0 80px;
  position: relative;
  min-height: 100vh;
  z-index: 100;
}

.form-wrapper {
  padding: 70px 0 20px;
}

.img-bg {
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.logo-bottom {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
}

.logo-bottom > img {
  width: 100px;
  display: block;
  margin: auto;
}

.logo-top {
  margin-top: 80px;
  margin-bottom: 50px;
}

.logo-top > .top > img {
  width: 130px;
}
.logo-top > .bottom > img {
  width: 130px;
}

/* form */
.form-group {
  margin-bottom: 25px;
}

.title {
  margin-bottom: 5px;
}
.forgot-password {
  color: #fb8632;
  cursor: pointer;
}
.forgot-password:hover {
  color: #f96800;
}
.area-title {
  display: flex;
  justify-content: space-between;
}
.error-text {
  margin-top: 8px;
  color: #ff0000;
  /* position: absolute;
  top: 7px;
  right: 10px; */
  font-size: 0.9rem;
  text-align: right;
}
.icon {
  width: 20px;
  position: absolute;
  right: 10px;
  top: 18px;
  margin: auto;
}
.icon img {
    width: 20px;
    position: absolute;
    margin: auto;
}
.icon #imgNotShow {
    top: -3.5px;
    width: 21px;
}

.login-error {
  color: #ff0000;
  text-align: center;
  margin-bottom: 10px;
}
.form-input {
  position: relative;
}

/* end form*/

/* button */
.btn-login {
  margin-top: 10px;
  background-color: #fb8632;
  border: 1px solid #fb8632;
  border-radius: 5px;
  color: #fff;
  width: 100%;
  padding: 5px;
  height: 45px;
  font-family: unset;
  font-size: 1.2rem;
}

.btn-login:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-login:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

/* input */
.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}


