/* CSS Document */
body{
	color: rgb(51,59,73);
}
.page_div{
	display: flex;
	position: relative;
	flex-direction: column;
	margin: 35px auto 35px auto;
	width: 600px;
	/*background-color: aquamarine;*/
}
.main_div{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	-webkit-box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	-moz-box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	padding: 10px;
	border-radius: 25px;
	animation-name: transitiondown;
	animation-duration: 1s;
	
}
#logo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin: 10px auto 25px auto;
	height: 350px;
}
.form_name {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0px auto 10px auto;
	font-weight: bold;
	text-transform: uppercase;
}
.the_form{
	display: flex;
	flex-direction: column;
	margin: auto;
	padding: 10px;
}
.the_label_for_field {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	break-after: always;
	align-self: flex-end;
	align-items: baseline;
	margin-bottom: 10px;
	font-size: 20px;
}
.the_input_field {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	height: 35px;
	flex: 0 0 200px;
	margin-left: 10px;
	width: 220px;
	border-radius: 10px;
	border-color: rgb(85,85,94);
	border-width: thin;
	background-color: rgb(85,85,94);
	color: rgb(250,250,250);
	font-size: 18px;
}
.help_block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-self: center;
	margin-bottom: 10px;
	text-decoration: underline;
}
.the_label_for_checkbox {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-self: center;
	font-size: 18px;
	margin-bottom: 10px;
}
.submit_button {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	break-before: always;
	align-self: center;
	font-size: 18px;
	background-color: rgb(85,85,94);
	color: white;
	padding: 15px;
	border-radius: 15px;
	border-style: solid;
	border-width: medium;
	border-color: rgb(250,250,250);
	margin-bottom: 10px;
	cursor: pointer;
}
.social_media_div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	position: relative;
	min-width: 400px;
	width: 600px;
	-webkit-box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	-moz-box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	box-shadow: -1px 1px 35px 15px rgb(51,59,73);
	border-radius: 25px;
	margin: 35px auto 0 auto;
	animation-name: transitionup;
	animation-duration: 1s;
}
.social_media_svg {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 60px;
	margin: 20px;
}
.footer_div {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	font-weight: bold;
	margin: 25px auto 0px auto;
	font-size: 15px;
	animation-name: fade;
	animation-delay: 1s;
	animation-duration: 1s;
	bottom: 0px;
	opacity: 0%;
	animation-fill-mode: forwards;
}

/* For Smaller then 500px displays */

@media screen and (max-width: 700px) {
	.page_div {
		width: 500px;
	}
	.social_media_div {
		width: 500px;
	}
  }

/* When action take place*/

.the_input_field:hover, .the_input_field:focus {
	background-color: rgb(250,250,250);
	color: rgb(85,85,94);
	outline: none;
}
.submit_button:hover {
	background-color: rgb(250,250,250);
	color: rgb(85,85,94);
	outline: none;
	border-color: rgb(85,85,94);
}
#logo:hover{
	transform: rotate(10deg);
}

/* Animations */

@keyframes fade {
	from {opacity: 0%;}
	to {opacity: 100%;}
}
@keyframes transitiondown {
	from {top: -1000px; opacity: 0%;}
	to {top: 0px; opacity: 100%;}
}
@keyframes transitionup {
	from {bottom: -1000px; opacity: 0%;}
	to {bottom: 0px; opacity: 100%;}
}
@keyframes movelogo {
	from {transform: rotate(0);}
	to {transform: rotate(20deg);}
}
