.centered {
  position: fixed; /* or absolute */
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);

}
#cover {
	position:fixed;
	top:0;
	left:0;
	background:rgba(0,0,0,0.6);
	z-index:10000;
	width:100vw;
	height:100vh;
	display:none;
}

/* HTML: <div class="loader"></div> */
.lds-hourglass {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #ccc #0000;
  animation: l16 1s infinite linear;
}
.lds-hourglass::before,
.lds-hourglass::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.lds-hourglass::before {
  border-color: #f03355 #0000;
  animation: inherit; 
  animation-duration: .5s;
  animation-direction: reverse;
}
.lds-hourglass::after {
  margin: 8px;
}
@keyframes l16 { 
  100%{transform: rotate(1turn)}
}

input {
	margin-bottom: 0 !important;
	border-radius: 4px !important;
	border: 1px solid #E9E9E9 !important;
	min-height: 38px !important;
	max-height: 38px !important;
	font-size: 14px !important;
	line-height: 20px !important;
	padding: 0 14px !important;
	color: #383838 !important;
}

.container-shadow {
	background: #FFF;
	box-shadow: 0px 4px 16px 0px rgba(17, 17, 26, 0.05), 0px 8px 32px 0px rgba(17, 17, 26, 0.05);
	border: 0;
	padding: 60px;
}

.required, #befr_response {
	font-size:10pt;
	text-decoration: none;
	border: none;
	color: #ff4f55;
}

.error {
	color: #ee0000;
}

.login-form {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.login-form label {
    font-weight: bold;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.login-form .error {
    color: red;
    font-weight: bold;
}