@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
}

#loginContent {
  background-color: #212728;
  color: gray;
  display: flex;
  inset: 0;
  overflow-y: auto;
  position: absolute;
}

.login-img {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
	padding: 16px;
}

.login-img  > .img-call-center{
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
}

.login-img  > .img-call-center > img{
	width: 100%;
	position: relative;
}

.img-call-center .login-logo-call-center img{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
}

.img-call-center .brand-text {
  position: absolute;
  bottom: 8px;
  right: 10%;
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.contenido-formulario{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px;
}

.parr-bv{
	font-family: "Lato", sans-serif;
	font-weight: 900;
	font-style: italic;
	font-size: 3rem;
}

.parr-msg1{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-size: 1.5rem;
}

.formulario-login{
  width: 100%;
  min-width: 600px;
}

.formulario-login .form-group{
  margin: 14px 0;
}

.formulario-login label{
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #cfd3d4;
}

.formulario-login .form-control{
  width: 100% !important;
  height: 44px;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,.25);
  border-radius: 0;
  background: transparent;
  color: #f2f2f2;
  font-size: 1rem !important;
  padding: 0 12px 0 44px;
  outline: none;
  box-shadow: none;
}

#edit-name{
  background-image: url('https://demo-callcenter.ddns.net/sistema/assets/img/Recurso_1.svg');
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 12px center;
}

#edit-pass{
  background-image: url('https://demo-callcenter.ddns.net/sistema/assets/img/Recurso_2.svg');
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: 12px center;
}

.formulario-login .form-actions .form-submit{
  width: 100%;
  height: 50px;
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.35rem !important;
  color: #fff !important;
  background: #8a8f93 !important;
  border: 1px solid #6a7b84 !important;
  border-radius: 10px;
  box-shadow: none;
	transition: color 0.3s ease, border-color 0.3s ease;
}

.formulario-login .form-actions .form-submit:hover,
.formulario-login .form-actions .form-submit:focus{
  background: #6f7a80 !important;
  border-color: #6f7a80 !important;
}

.js-form-item-name,
.js-form-item-pass{
  background: none !important;
}

.parr-msg2{
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #cfd3d4;
}

.parr-msg2 a,
.parr-msg2 a:visited {
  color: #40518f;
	transition: color 0.3s ease;
}

.parr-msg2 a:hover,
.parr-msg2 a:focus{
	color: #96a4d6;
}

@media (max-width: 1000px) {
  #loginContent {
    flex-direction: column;
  }

	.login-img  > .img-call-center{
		height: 100%;
	}
	
	.login-img  > .img-call-center > img{
		height: 100%;
	}

	.formulario-login{
		min-width: 100%;
	}
}