html 
{
	background: url(/img/WP_1.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: Roboto, sans-serif;
	font-weight: normal;
	font-size: 12px;
}

h1 
{
	font-size: 25px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    color: white;
}

form
{
    height: 44em;
    width: 42em;
    background-color: rgba(255, 255, 255, 0.13);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px) brightness(0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
    padding: 50px 35px;
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-rows: 11em 11em 11em 11em;
    color: #dbdbdb;
}

form div 
{
    display: flex;
    justify-content: center;
}

input[type="text"], input[type="password"] 
{
	display: block;
    border-radius: 0.4em;
    padding: 0 10px;
    font-size: 17px;
    font-weight: 300;
    width: 20em;
    box-shadow: inset 0px 6px 20px 0px #4f4f4f;
    border: 1px white;
}

input::placeholder
{
	color: #838383;
}

input:focus::placeholder 
{
  color: transparent;
}

input[type="text"]:focus, input[type="password"]:focus 
{
	outline: none;
}

img 
{
    padding-right: 1em;
    padding-bottom: 0.5em;
}

.button 
{
    margin-top: 1em;
    background-color: #ffffff;
    color: #080710;
    padding: 1.2em 1em;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    min-width: 10em;
    box-shadow: 4px 4px 20px #4b4b4b;
    border: 0;
}

.button:hover 
{
	background: linear-gradient(to bottom, #7ce97b 5%, #227931 100%);
	background-color:#f6f6f6;
	cursor: pointer;
	outline: none;
	box-shadow: 3px 3px 20px #272727;
	color: #085d08;
}

.button:active
{
	position:relative;
	top: 4px;
	outline: none;
	box-shadow: inset 2px 2px 10px #1c4f13;
	background: linear-gradient(to bottom, #227931 5%, #7ce97b 100%);
	color: #085d08;
}

.RegText
{
	font-size: 17px;
}

.RegBtn {
    font-size: 17px;
    display: grid;
    justify-items: center;
}

.BtnRegUsr {
    height: 3em;
    width: 11em;
    margin: 0.5em 0px;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #70a3c1;
    margin: 15% auto;
    border: 1px solid #888888;
    width: 80em;
    height: 20em;
    display: grid;
    grid-template-columns: 1fr 8em 1fr;
    grid-template-rows: 3em 3em 1fr 3em;
    grid-template-areas:
        "title title title"
        "short short short"
        "text text text"
        "noL close noR";
}

.modal-title {
	grid-area: title;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  background-color: #a7bed1;
}

.titlearea
{
	background-color: #295e8b;
	color: white;
	grid-area: title;
}

.shorttext
{
	grid-area: short;	
	padding: 1em;
	font-weight: var(--fontBold);
}

.textarea
{
	grid-area: text;
	padding: 1.5em;
	font-size: 11pt;
}

.close 
{
	grid-area: close;
	display: flex;
    align-items: center;
    justify-content: center;
    grid-area: close;
    background-color: #295e8b;
    color: white;
    margin: 0.2em;
}