.containerLoginPanel{
  display: block;
  position: relative;
  z-index: 0;
  /*margin: 6rem auto 0;*/
  margin-top: 150px;
  padding: 5rem 4rem 0 4rem;
  box-shadow: 0px 50px 70px -20px rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}

.containerLoginPanel:after{
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(ellipse at left bottom, rgba(9, 9, 9, 0.5) 0%, rgba(15, 15, 15, 0.9) 60%, rgba(159, 14, 14, 0.9) 100%);
  box-shadow: 0 -20px 150px -20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.form-app{
  position: relative;
  z-index: 1;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255,255,255, 0.25);
}


.form-label, .form-checkbox-label{
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 1rem;
}

.form-checkbox-label{
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  margin-top: 2rem;
  margin-left: 1rem;
  color: #FFFFFF;
  font-size: .75rem;
  text-transform: inherit;
}

.form-input-text{
  color: white;
  font-size: 1.15rem;
  width: 100%;
  padding: .5rem 1rem;
  border: 2px solid transparent;
  outline: none;
  border-radius: 1.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
}

.form-input-text:hover,
.form-input-text:focus{
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background-color: transparent;
}

.form-input-text + .form-label {
	margin-top: 1.5rem;
}

.form-input-checkbox {
	position: absolute;
	top: .1rem;
	left: 0;
	margin: 0;
}

.login-button {
	color: #ffffff;
	font-size: 1rem;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 1rem;
	padding: .75rem;
	border-radius: 2rem;
	display: block;
	width: 100%;
	background-color: rgba(237, 17, 17, 0.75);
	border: none;
	cursor: pointer;
}

.login-button:hover {
	background-color: rgba(237, 17, 17, 1);
}

.link {
	display: block;
	margin-top: 3rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: .75rem;
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.link:hover {
	color: rgb(235, 53, 53);
}


#errMsgUser, #errMsgPass {
  display: none;
}

