*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Verdana, Geneva, sans-serif;
}
body{
	background-color: rgb(185, 215, 245);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.login-box{
	position: relative;
	width: 370px;
	height: 520px;
	color: #ece6e6;
	border-radius: 20px;
	padding-top: 80px;
	padding-right: 30px;
	padding-bottom: 2px;
	padding-left: 30px;
	background-color: #3962AA;
	filter:drop-shadow(6px 8px 2px #213353);
}
.header-img{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header-img img{
    width: 150px;
}
.header-img:hover img{
    width: 160px;
	filter:brightness(1.1);
	transition: all 0.5s ease-out;
}
.header-text{
    text-align: center;
    font-size: larger;
    margin-bottom: 20px;
    margin-top: 20px;
}
.input-group{
    position: relative;
    display: flex;
    flex-direction: column;
}
.input-field{
    height: 40px;
    background: transparent;
    color: #fff;
    border: 0;
    border-bottom: 1px solid #fff;
    margin: 15px 0;
    padding: 0 15px;
    outline: none;
}
.input-field:focus,.input-field:valid{
    border-bottom: 2px solid #8f9935;
}
.input-group label{
    position: absolute;
    top: 23px;
    left: 3px;
    transition: .3s;
}
.input-field:focus ~ label,.input-field:valid ~ label{
    top: 5px;
    font-size: 12px;
    color: #74bfeb;
}
.forgot-pass{
    text-align: right;
    margin-bottom: 10px;
}
.forgot-pass a{
    color: #9c6f34;
    font-size: 12px;
}
.input-submit{
	height: 40px;
	border-radius: 30px;
	border: none;
	background: #67a6e0;
	margin-top: 10px;
	cursor: pointer;
    transition: .4s ease-out;
	font-size: medium;
	font-weight: bolder;
	padding: 0 15px;
}
.input-submit:hover{
    box-shadow: 0 2px 10px rgba(18, 30, 41, 0.753);
}
.buttons {
	display: block;
	padding-top: 16px;
}
.buttons a {
	text-decoration: none;
	display: inline-block;
	font-size: small;
	width: 80%;
	line-height: 26px;
	color: #c0cdd4;
	transition: all .4s ease-in-out;
	padding-left: 30px;
	background-repeat: no-repeat;
}
.yt { background-image: url(../ofv_img/red_ytube.png); }
.ig { background-image: url(../ofv_img/red_insta.png); }
.fb { background-image: url(../ofv_img/red_fbook.png); }
.gg { background-image: url(../ofv_img/red_goo.png); }

.buttons a:hover {
	color: #04b6fc;
	transform: scale(1.1);
}
.styfollow{
	font-size: small;
	font-weight: bolder;
	outline: none;
	padding-top: 20px;
	font-family: "Lucida Console", Monaco, monospace;
	color: #74bfeb;
	padding-bottom: 10px;
}
.styrrsslink {
	font-size: small;
	color: #b5d1df;
	letter-spacing: 1px;
	text-decoration: none;
	float: right;
}
.rrssicon-img img{
	width: 24px;
	height: 24px;
	filter: invert(88%);
}