:root {
  --one1: #8a05eb;
  --one1-light: #bf4bf2;
  --one1-dark: #7500a2;
  --one2: #dbdbdb;
  --one2-light: #ffffff;
  --one2-dark: #a9a9a9;
  --one3: #fb8b24;
  --one3-light: #ffbc57;
  --one3-dark: #c25c00;
  --one4-dark-gray: #3b393b;
  --one1-text: #ffffff;
  --one2-text: #000000;
  --header-height: 40px;
  --l-nav-height: calc(97vh - var(--header-height));
  --l-nav-width: 48px;
  --l-nav-collapsed-width: 200px;
  --white-color: #f7f6fb;
  --body-font: "Nunito", sans-serif;
  --body-height: calc(100vh - var(--header-height));
  --normal-font-size: 1rem;
  --z-fixed: 100;
}

.container_page_login {
  /* border: 2px solid red; */
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

.left_session {
  /* border: 1px solid purple; */
  width: 75%;
  background-image: url("../assets/images/login-screen/login-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.right_session {
  /* border: 1px solid green; */
  width: 35%;
  height: 100%;
  background-image: linear-gradient(to right, var(--one1-dark), var(--one2));
}

@media (max-width: 768px) {
  .left_session {
    /* width: 1px; */
    display: none;
  }
  .right_session {
    width: 100%;
  }

  .header_login {
    height: 50% !important;
  }
}

.container_left {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* .inputs_width {
  border: 4px solid yellow;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.inputs_height {
  border: 4px solid blue;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.container_data {
  /* border: 1px solid yellow; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* margin: auto auto; */
  /* padding: 20px 40px; */
}

.header_login {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 40%;
  width: 100%;
  /* font-size: 30px;
  margin-top: -40px; */
}

.header_login img {
  /* border: #8a05eb solid 2px; */
  width: 20em;
  /* height: 50%; */
  margin-bottom: 40px;
}

.login_error {
  /* border: 1px solid black; */
  /* margin-top: 80px; */
  height: 25px;
}

#msg_error_login {
  display: none;
  font-size: 13px;
  padding: 5px 7px;
  justify-content: center;
  color: var(--one3);
  border-radius: 5px;
  box-shadow: 3px 3px 8px black;
  background-color: var(--one2);
}

.error_container {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* height: 25px; */
  /* width: 100%; */
}

.inputs_login {
  /* border: 1px solid greenyellow; */
  /* margin-top: 24px; */
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.inputs_login div {
  margin-bottom: 10px;
}

.form-floating {
  width: 70%;
}

.btn_login {
  /* border: 1px solid rebeccapurple; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  /* margin-top: 30px; */
}

.btn_login button {
  min-width: 200px;
  background-color: var(--one1-dark);
  border-color: var(--one1-dark);
  color: white;
  display: flex;
  justify-content: center;
}

.btn_login button:hover {
  /* fundo branco e letra roxa */
  background-color: #550077;
  font-weight: bold;
  color: white;
}

.btn_login button:active,
.btn_login button:focus {
  border: none;
  background-color: var(--one1-dark);
  color: var(--white-color);
}

.spinnerload {
  font-size: 10px !important;
  width: 20px !important;
  height: 20px !important;
  text-align: center !important;
  margin: 0 !important;
  /* margin-right: 5px !important; */
}