@font-face {
	font-family: fontstyle;
	src: url(./fonts/Comfortaa-Bold.ttf);
}
* {
	font-family: fontstyle;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background-image: linear-gradient(to right,#f3ad6a,#ee4c5a);
}
.flex-container{  
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.7);
	border-radius: 10px;
	justify-content: center;
	align-items: center;
	width:30%;
	height: 100%;
	margin-top: 180px;
	background-color: white;
}

.container {
	padding: 50px;
	display: flex;
	flex-direction:column;
	height: 70%;
}

h1 {
	margin-bottom: 30px;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

label, input {
	margin-bottom: 15px;
}

input {
	padding: 10px;
	border: solid;
	border-top: 1px; 
	border-left: 1px;
	border-right: 1px;
	border-color: rgb(23, 196, 0);
	width: 300px;
}
input:hover{
    border-color:rgb(233, 59, 6) ;
}

button {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-image: linear-gradient(to right,#f3ad6a,#ee4c5a);
	color: white;
	cursor: pointer;
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.7);
}
button:hover{
	background-image: linear-gradient(to right,#fd0460,#ffa600);
}
a{
	text-decoration: none;
	color:black;
}