/* Make the background red to black gradient */
body {
  background: linear-gradient(to bottom, rgba(221,51,51,1) 0%,rgba(0,0,0,1) 100%);
  color: #999999;
}

/* Customize the form design */
form#loginform {
  padding: 30px 30px;
  background-color: #111111;
  border: none;
  box-shadow: 0 40px 40px 0 rgba(0, 0, 0, 0.2), 0 40px 40px 0 rgba(0, 0, 0, 0.19);
}

/* Change the links below login form white and semi-bold */
.login #backtoblog a, .login #nav a {
	color: white; 
	font-weight: 500;
	margin: 0 auto;
}

/* Customize the links hover color */
.login #backtoblog a:hover, .login #nav a:hover {
	color: #00ffff;
	text-decoration: underline;
}

/* Change the Sign In button and its hover color */
.wp-core-ui .button-primary {
	margin-top: 20px;
	background-color: #dd3333;
	border-color: #dd3333;
}

.wp-core-ui .button-primary:hover {
	background-color: #dd3333;
	border: 2px solid #999999;
}

.wp-core-ui .button-secondary, .wp-core-ui .button-secondary:hover {
	color: #dd3333;
}

/* Center the bottom links */
#nav, #backtoblog {
	text-align: center;
}

/* Remove input box focus outline */

.login form .input, .login input[type=password], .login input[type=text] {
	border: 2px solid #dd3333;
	border-left: none;
	border-right: none;
	border-top: none;
	font-size: 18px;
	font-weight: 600px;
}

/* Remember Me Checkbox */

.forgetmenot {
	margin: 20px auto;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  margin-top: 20px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1.25em; height: 1.25em;
  border: 2px solid #dd3333;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '\2713\0020';
  position: absolute;
  top: .15em; left: .15em;
  font-size: 1.5em;
  line-height: 0.8;
  color: #dd3333;
  transition: all .2s;
  font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #dd3333;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 2px dotted #dd3333;
}

/* hover style just for information */
label:hover:before {
  border: 2px solid #dd3333!important;
}

/* Custom logo with Base64 image format */
.login h1 a {
	background-image: url(http://tizperassi1.netsons.org/wp-content/uploads/2021/03/cropped-Immagine2-scaled-1.jpg);
	background-size: 180px;
	width: 100%;
	height: 120px;
}
