*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: url(../img/10.jpg)  no-repeat;
	background-size: cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}


.container{
	width: 600px;
	height: 640px;
	padding: 10%;
	background-color: rgba(255, 255,255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 50px;
	transform: translateY(-1000px);
	transition: all 2s ease;
}

 .container h2{
	color: #fff;
	font-size: 2rem;
	width: 400px;
	font-family: 'Courier New', Courier, monospace;
	font-weight: lighter;
	border: 1px solid #fff;
	display: grid;
	place-content: center;
}
form{
	display: flex;
	flex-direction: column;
}
form img{
	width: 300px;
	height: 300px;
}
input{
	width: 350px;
	height: 40px;
	border: none;
	outline: none;
	border-radius: 40px;
	background-color: rgba(255, 255,255, 0.5);
	margin-top: 20px;
	padding-left: 10px;
}
button{
	width: 200px;
	height: 40px;
	border: none;
	margin-left: 80px;
	outline: none;
	border-radius: 40px;
	background-color: rgba(76, 148, 241, 0.8);
	margin-top: 20px;
	color: #fff;
	cursor: pointer;
}
.social-text{
    padding: .7rem 0;
    font-size: 1rem;
	color: #fff;
	font-family: 'Courier New', Courier, monospace;
	margin-left: 30px;
}

.social-media{
    display: flex;
    justify-content: center;

}

.social-icon{
    height: 46px;
    width: 46px;
    border: 1px solid #333;
    margin: 0 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icon:hover{
    color: #4481eb;
    border-color: #4481eb;
    font-size:1.6rem ;
}
.social-icon:last-child:hover{
    color:rgb(216, 56, 56);
}

@media (max-width:900px){
	body{
		padding: 0;
	}
	.container{
		width: 100%;
		height: 100%;
		border-radius: 0%;
		padding: 0;
	}
	h2{
		font-size: 4rem;
	}
	input{
		width: 500px;
		height: 70px;
		font-size: 1.5rem;
		padding-left: 20px;
	}
	button{
		width: 350px;
		height: 70px;
		font-size: 1.5rem;
	}
	form img{
		margin-left: 100px;
	}
	.social-text{
		font-size: 1.5rem;
		margin-top: 20px;
	}
	.social-icon{
		font-size: 2rem;
		width: 60px;
		height: 60px;
	}
	

}