html {
position:relative;
font-family:Calibri,Arial;
font-size:15px;
color:#fff;
background-color:#000;
text-align:left;  
min-height: 100%;
overflow:auto;
margin: 0; 
padding: 0
}

body {
	margin:2rem;
}

h1 {
	margin-top:0px;
	margin-bottom:0px;
}

h2 {
	margin-top:0px;
	margin-bottom:0px;
}

a:link{
	color: #fff;
	text-decoration:none;
}
a:visited{
	color: #000;
	text-decoration:none;
}
a:hover{
	color: #0aabdc;
	text-decoration:none;
}
a:active{
	color: #fff;
	text-decoration:none;
}

.passcheck {
	text-align: center;
}
.error { 
	padding-bottom:10px;
	font-weight: bold;
	font-size: 1.5rem;
	color:#ff9200 !important;
}

input {
	min-width: 30%;
	font-size: large;
	font-weight: bold;
    width: 100px;
    padding: 5px 5px;
    margin: 5px 5px;
    box-sizing: border-box; 
    border-radius: 5px;
    -webkit-appearance: none;
}
input:hover {
	background-color:#efefef;
}
input[type=button], input[type=reset], input[type=submit] {
	color:#000;
	background-color:#fff;
	font-size: large;
	font-weight: bold;
    border: none;
    padding: 5px 5px;
    text-decoration: none;
}

.logo {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	max-width: 50%
}

.imgself {
	max-width: 100%
}

.container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: : 1fr 1fr;
  grid-gap: 1.5rem;
}

.resize {
  width: 100%;
  height: auto;
}


.item-1 {
 grid-row: 1 / 3;
 grid-column:  1 / 2;
}

.item-2 {
 grid-row: 1 / 2;
 grid-column:  2;
}

.item-3 {
 grid-row: 2 / 3;
 grid-column:  2;
}



@media only screen and (max-width: 1000px){
  .container {
  display: grid;
  grid-template-columns: 1fr;
} 
  .item-1 {
    grid-row: 2 / 2;
    grid-column: 1;
  }
  .item-2 {
    grid-row: 1 / 2;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3 / 3;
    grid-column: 1;
  }
}