.login-container {
	width: 400px;
	height: 600px;

	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	
	margin: auto;
        
        text-align: center;
        
        background-color: black;
        min-height: 200px;
        text-align: center;
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
        border-color: DodgerBlue;
        border-radius: 20px;
        border-width: 2px;
        box-shadow: inset 0 0 20px DodgerBlue;
}
body {
    background-color: black;
    font-family: Tahoma, Geneva, sans-serif;
    color: white;
}
input{
    width: 60%;
    height: 40px;
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid DodgerBlue;
    color: white;
    background-color: black;
}
select{
    width: 60%;
    height: 40px;
    padding: 5px 20px;
    border-radius: 10px;
    border: 2px solid DodgerBlue;
    color: white;
    background-color: black;
    font-size: 130%;
}
input:focus{
    background-color: black;
    box-shadow: inset 0 0 20px DodgerBlue;
}
.button {
  border-radius: 10px;
  color: white;
  text-decoration: none;
  background-color: black;
  padding: 10px 15px 10px 15px;
  margin: 5px;
  border-top: 1px solid DodgerBlue;
  border-right: 1px solid DodgerBlue;
  border-bottom: 1px solid DodgerBlue;
  border-left: 1px solid DodgerBlue;
}
.button:hover {
  box-shadow: inset 0 0 20px DodgerBlue;
}
