
HTML {
  background: url('images/cp.jpg');
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  
  background-repeat:no-repeat;
	background-position: center;
}

body {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  background: rgba(0, 0, 0, .75);
}
.form-container
{
	margin-bottom:10%;
	margin-left:21%;
	margin-right:10%;
	margin-top:15%;
	background-color:white;
	padding:30px;
	border-radius:15px;
	border-bottom-color:red;
	border-bottom-style:solid;
	border-bottom-width:10px;
	
}
.input-container {
  display: flex;
  
}
/*.bg-container{
  width: 100%;
  height: 300px;
  border: 1px solid #000;
  position: relative;
}
.bg-container .content{
  position: absolute;
  z-index:999;
  text-align: center;
  width: 100%;
}
.bg-container::after{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index:99;
  background-image:url('images/cp.jpg');
  background-size: cover;
  opacity: 0.4;
  background-repeat:no-repeat;
	background-position: center;
}*/



/*body
{
	background:url('images/cp.jpg');
	background-repeat:no-repeat;
	background-position: center;
    background-size: cover;
    height:100%;
	
}*/

h2
{
	color:black;
	/*text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;*/
}
input[type=text], [type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  display: inline-block;
  border: none;
  border-bottom: 2px solid red;
  border-radius: 10px;
  background-color: #F0F8FF;
  outline:none;
}
input[type=text]:focus, [type=password]:focus {
  border: 3px solid red;
}
button[type=submit]{
  background-image: linear-gradient(to right,crimson,coral);
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}