body {
	background: url('../imgs/fondo1.webp') no-repeat fixed center center;
	background-size: cover;

    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
}

* {
    box-sizing: border-box;
}

.login-block {
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border: 3px solid rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
}

.login-block2 {
    margin: auto;
    width: 20%;
    border: 3px solid green;
    padding: 10px;
    text-align: center;
    /*top: 50%; */
    position: relative;
    top: 200px; 
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid hsl(120, 2%, 76%); /* #0099FF */
    margin: 0 auto;
}

.login-block0 {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid hsl(120, 2%, 76%); /* #0099FF */
    margin: 0 auto;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #5dd388; /* 0099FF */
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #c4c4bc; /* e15960 */
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #ff7b81; /* ff7b81 */
}
  
.container {
    padding: 16px;
    background-color: white;
}
  
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}
  
input[type=text]:focus, input[type=password]:focus {
   background-color: #ddd;
   outline: none;
}

hr {
   border: 1px solid #f1f1f1;
   margin-bottom: 25px;
}
  
.registerbtn {
    background-color: #5dd388; /* 426dca */
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}
  
.registerbtn:hover {
    opacity: 1;
}
  
a {
    color: dodgerblue;
}
  
.signin {
    background-color: #f1f1f1;
    text-align: center;
}


.modalDialog {
	position:fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: -100px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }