* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: url(./access/bg-line-5.png) no-repeat center top/cover;
}
body .right,
body .left {
  height: 100%;
  width: 44.3%;
}
body .center {
  width: 100%;
}
body header {
  display: flex;
  height: 80px;
  position: relative;
}
body main {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}
body main .center {
  height: 100%;
}
body main .center .login-page {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .center .login-page .login {
  color: white;
  width: 450px;
  padding: 20px;
  border-radius: 10px;
}
body main .center .login-page .login .hi {
  font-size: 25px;
}
body main .center .login-page .login .title {
  color: black;
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
}
body main .center .login-page .login .office {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 20px;
}
body main .center .login-page .login .office a {
  text-decoration: none;
  width: 100%;
}
body main .center .login-page .login .office .office-icon {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
  color: white;
  font-weight: bold;
  transition: all 0.5s ease;
}
body main .center .login-page .login .office .office-icon .title-of {
  cursor: pointer;
}
body main .center .login-page .login .office .office-icon .img-office {
  cursor: pointer;
  position: relative;
  height: 16px;
  width: 16px;
  z-index: 1;
}
body main .center .login-page .login .office .office-icon:hover {
  background-color: white;
  color: black;
}
body main .center .login-page .login .office .office-icon:hover .img-office {
  filter: invert(1);
}
body main .center .login-page .login .office .subtitle {
  border: 1px solid transparent;
  border-radius: 50px;
  transition: border-color 0.5s ease;
  color: rgb(180, 180, 180);
  padding: 5px 0px;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  width: 100%;
  gap: 10px;
}
body main .center .login-page .login .office .subtitle .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: gray;
}
body main .center .login-page .input {
  padding: 10px 0;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  display: block;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  color: white;
}
body main .center .login-page .input::-moz-placeholder {
  color: white;
}
body main .center .login-page .input::placeholder {
  color: white;
}
body main .center .login-page .input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: white;
  -webkit-transition: background-color 10000s ease-in-out 0s;
  transition: background-color 10000s ease-in-out 0s;
}
body main .center .login-page .input:-moz-autofill {
  box-shadow: 0 0 0 1000px transparent inset;
  -moz-text-fill-color: white;
}
body main .center .login-page .btn-res {
  display: flex;
  align-items: center;
  cursor: pointer;
}
body main .center .login-page .button-login {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  cursor: pointer;
}
body main .center .login-page .button-login .body {
  display: flex;
  background-color: white;
  padding: 7px;
  border-radius: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.5s ease;
}
body main .center .login-page .button-login .body .text-action {
  color: black;
  transition: color 0.5s ease;
  font-weight: 900;
  margin-left: 10px;
}
body main .center .login-page .button-login .body .circle-arrow {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: black;
  transition: background-color 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .center .login-page .button-login .body .circle-arrow .fa-arrow-right-long {
  font-size: 20px;
  color: white;
  transition: color 0.5s ease;
}
body main .center .login-page .button-login:hover .body {
  background-color: black;
}
body main .center .login-page .button-login:hover .body .text-action {
  color: white;
}
body main .center .login-page .button-login:hover .body .circle-arrow {
  background-color: white;
}
body main .center .login-page .button-login:hover .body .circle-arrow .fa-arrow-right-long {
  color: black;
}
body img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
}/*# sourceMappingURL=styles.css.map */