:root {
  --color-principal: #0060C7;
  --color-principal-dark: #044386;
  --color-principal-secondary: #464C42;
  --color-principal-secondary-dark: #2d2e2c;

  --sucess-color: #00C851;
  --sucess-color-dark: #007E33;
  --danger-color: #FF4444;
  --danger-color-dark: #CC0000;
  --warning-color: #FFBB33;
  --warning-color-dark: #FF8800;
  --info-color: #33B5E5;
  --info-color-dark: #0099CC;
  --default-color: #2BBBAD;
  --default-color-dark: #00695C;
  --primary-color: #4285f4;
  --primary-color-dark: #0D47A1;
  --secondary-color: #AA66CC;
  --secondary-color-dark: #9933CC;
  --elegant-color: #2E2E2E;
  --elegant-color-dark: #212121;
  --stylish-color: #4B515D;
  --stylish-color-dark: #3E4551;
  --unique-color: #3F729B;
  --unique-color-dark: #1C2331;
  --special-color: #37474F;
  --special-color-dark: #263238;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

.div_particles {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -10;
}

.container_login {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_login {
  border-radius: 10px;
  width: min(100% - 1em, 600px);
  margin-inline: auto;
  -webkit-box-shadow: 5px 5px 10px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 10px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 10px -4px rgba(0, 0, 0, 0.75);
}

/* .card_login_left {
  background: rgb(0, 96, 199);
  background: linear-gradient(0deg, rgba(0, 96, 199, 1) 0%, rgba(219, 233, 247, 1) 30%, rgba(255, 255, 255, 1) 50%, rgba(219, 233, 247, 1) 70%, rgba(0, 96, 199, 1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 0 0 10px;
} */

.logo_login {
  width: 150px;
  border-radius: 20px;
}

/* .card_login_right {
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 10px 0;
} */

.image_login_right {
  width: 70px;
  margin: 20px 0 20px 0;
}

.title_login {
  font-family: cursive;
  font-size: 20px;
  font-weight: bold;
  color: var(--color-principal);
}

.subtitle_login {
  font-size: 12px;
  font-family: cursive;
  font-weight: bold;
  color: var(--color-principal-secondary);
  width: 100%;
}

/* .div_content_inputs {
} */

.icon_input {
  display: block;
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  user-select: none;
  z-index: 99;
}

.icon_view_password {
  position: absolute;
  display: block;
  bottom: .5rem;
  right: .5rem;
  user-select: none;
  cursor: pointer;
}

.div_inputs {
  position: relative;
  height: 60px;
  width: 100%;
  max-width: 100%;
  color: var(--color-principal-secondary);
  overflow: hidden;
}

.input_login {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 52px;
  outline: 0;
  background-color: inherit;
  padding-top: 25px;
  border: none;
  box-sizing: border-box;
  color: var(--color-principal-secondary);
  font-size: 12px;
  font-weight: bold;
  padding-left: 30px;
  padding-right: 30px;
}

.label_wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  background-color: inherit;
  left: 0;
  pointer-events: none;
  border-bottom: 1px solid;
  border-bottom-color: var(--color-principal-secondary);
}

.label_wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 3px solid;
  border-bottom-color: var(--color-principal);
  left: 0;
  bottom: -1px;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}

.label_text {
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: all 0.2s ease;
  padding-left: 30px;
}

.input_login:focus+.label_wrapper .label_text,
.input_login:valid+.label_wrapper .label_text {
  font-size: 14px;
  padding-left: 5px;
  color: var(--color-principal);
  transform: translateY(-120%);
}

.input_login:focus+.label_wrapper::after,
.input_login:valid+.label_wrapper::after {
  transform: translateX(0%);
}

.link_login {
  font-size: 12px;
  cursor: pointer;
}

.chk_remember_user {
  cursor: pointer;
}

.div_remember_user {
  cursor: pointer;
}

.div_button_login {
  margin: 25px 0 0 0;
}

.btn_login {
  background-color: var(--color-principal);
  border: none;
  outline: none;
  color: #FFFFFF;
  width: 100%;
  height: 30px;
  border-radius: 5px;
  font-weight: bold;
}

.btn_login:hover {
  background-color: var(--color-principal-dark);
}

.btn_login:active {
  opacity: .9;
}

.line_connect_login div {
  font: 14px cursive;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.line_connect_login .linea {
  position: relative;
  z-index: 1;
}

.line_connect_login .linea:before {
  border-top: 1px solid;
  border-top-color: #727272;
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}

.line_connect_login .linea span {
  background: #fff;
  padding: 0 15px;
}

/* Card de login */

.container_inputs_login {
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  border-radius: 10px;
}

.div_coinp_login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-radius: 10px;
}

.left_ca {
  background: rgb(0, 96, 199);
  background: linear-gradient(0deg, rgba(0, 96, 199, 1) 0%, rgba(219, 233, 247, 1) 30%, rgba(255, 255, 255, 1) 50%, rgba(219, 233, 247, 1) 70%, rgba(0, 96, 199, 1) 100%);
}

.btn_reg_login {
  color: var(--danger-color);
  font-size: 14px;
  cursor: pointer;
}

.btn_reg_login:hover {
  color: var(--danger-color-dark);
}

.btn_reg_login:active{
  color: var(--danger-color);
}