body{
	/*background: rgb(247, 247, 249);*/
	/*background: rgb(247, 247, 249) url(../img/bg.jpg) center;*/
    /*background: rgb(247, 247, 249) url("../../assets/img/bg.jpg") center;*/
    background: rgb(247, 247, 249) url("../../assets/img/bg.jpg") center;

	background-size: cover;
	height:100vh;
}
#bigWrapper{
	max-width: 1200px;	
	height: 505px;
	margin: auto;
	padding-top: 5%;

}
#text{
	width: 760px;
	font: 20px tahoma, arial;
	float: left;
	color:white;
}
#text img{
	width:200px;
	height: 100px;
	margin-bottom: 50px;
}
#text p{
	margin-bottom: 20px;
	text-shadow: 0 2px 3px black;
}

#frrm{
	width: 320px;	
	background-color: white;
	float: right;	
	padding: 20px 40px;
	border-radius: 15px;
	box-shadow: 0 0 20px 5px rgba(0,0,0,.3);
	border: 3px solid gray;
}
h2{
	font: 50px tahoma;
	text-align: center;
	margin-bottom: 50px;
	border-bottom: 7px double red;
	display: inline-block;
	text-shadow: 0px 0px 10px rgba(0,0,0,.4);
	margin-left: 30%;
}

input[type="text"], input[type="password"] {
	font: 24px tahoma, arial;
	width: calc(100% - 20px);
	padding: 10px;
	margin: 25px 0;
	border: 0;
	outline: 0;
	border-bottom: 2px solid black;
}
input[type="submit"]{
	padding: 12px 30px;
	font: 20px tahoma;
	margin: 40px auto;
	display: block;
	background-color: red;
	border: 2px solid red;
	outline: 0;
	color: white;
	cursor:pointer;
	box-shadow: 0 0 5px 2px rgba(0,0,0,.3);
	border-radius: 10px;

	-webkit-transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
	   -moz-transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
	    -ms-transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
	     -o-transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
	        transition: background-color .5s ease, box-shadow .5s ease, border-color .5s ease;
}
input[type="submit"]:hover{
	background-color: rgb(222, 0, 0);
	border-color: rgb(123, 0, 0);
	box-shadow: 0 0 20px 5px rgba(0,0,0,.3);
}



@media all and (max-width:1200px){
	#bigWrapper{width:98%;}
	frrm{width:30%}
	#text{width:60%}
}
@media all and (max-width:900px){
	frrm, #text{
		float: none;
  		margin: auto;
	}
	h2{margin-left: 40%;}
	p{text-align: justify;}

	frrm{width:80%}
	#text{width:95%}

}

