/* Override browser defaults by setting to zero */
* {
    margin: 0;
    padding: 0;
    border: 0; 
}


/* Set some initial values
html, body, header, p, h1,h2 {
    margin: 0px;
    padding: 0px;   
}
 */


p {
    font-family: arial, tahoma, sans-serif;
    color:#444;
}

h1,h2,h3,h4,h5,h6 {
    font-family: times new roman, times, serif;
    color:darkblue;
    margin: 0 0 10px 0;
}

button,a {
    font-family: arial, tahoma, sans-serif;
    /*font-size: 12pt;*/
    margin: 1px;
    border: medium;	
    border-radius: 6px; 
    padding: 4px 6px;   
	background-color:darkblue;
    border-style: outset;
	color: lightblue;
	text-decoration: none;
    /* box-shadow:  4px 4px 2px grey; */
    display: inline-block;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login{
    padding: 10px;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}













