@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*,*::before,*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	background: url('../images/background.jpg');
	font-family: 'Roboto', sans-serif;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.login_wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    min-height: 100vh;
}
.login_wrapper h3::first-letter {
    font-size: 40px;
}
.login_wrapper h3 {
    text-shadow: 0px 1px 3px #e51f2380;
    letter-spacing: 3px;
    margin: 0 0 35px;
    font-size: 32px;
    width: 100%;
    color: #E61F23;
    overflow: hidden;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
}
.flashdata_title h3 {display: none;}
.flashdata_title p {
    text-shadow: 0px 1px 3px #e51f2380;
    letter-spacing: 1px;
    font-size: 18px;
    color: #E61F23;
    font-weight: 500;
    margin-bottom: 10px;
 }
.login_form::after {
    background: url(../images/top_bg.png) top left repeat;
    position: absolute;
    height: 45px;
    width: 175px;
    top: 0;
    right: 0;
    content: "";
    background-size: cover;
}
.login_form::before {
    background: url(../images/bottom_bg.png) top left repeat;
    position: absolute;
    height: 45px;
    width: 175px;
    bottom: 0;
    left: 0;
    content: "";
    background-size: cover;
}
.login_form {
	box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
	margin: 25px auto;
	max-width: 500px;
	width: 100%;
	background: #000;
	position: relative;
	padding: 65px 30px 75px;
}
.form_group {
	border: 1px solid #D0D0D0;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}
.control_label {
	border-right: 1px solid #D0D0D0;
	text-align: center;
	height: 42px;
	color: #fff;
	margin: 0;
	width: 42px;
	line-height: 42px;
	background: rgba(000,000,000,.2);
}
.form_group input::placeholder {color: rgba(255,255,255,.2);}
.form_group input[type="password"],
.form_group input[type="text"] {
    background: rgba(000,000,000,.2);
	width: calc(100% - 42px);
	padding: 0 10px 0 15px;
	line-height: 42px;
	font-size: 16px;
	color: #fff;
	height: 42px;
	border: none;
	outline: none;
	box-shadow: none;
}
.form_checkbox input[type="checkbox"] {display: none;}
.form_checkbox input[type="checkbox"] + label {
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
    position: relative;
    height: 1.6em;
    margin: 0;
    width: 3em;
    cursor: pointer;
    font-size: 14px;
    background: #fff;
    border-radius: 1em;
    transition: background 0.1s ease-in-out;
}
.form_checkbox input[type="checkbox"] + label:before {
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    background: #E61F23;
    position: absolute;
    display: block;
    width: 1.2em;
    content: "";
    left: 0.2em;
    top: 0.2em;
    height: 1.2em;
    border-radius: 1em;
    transition: all 0.2s ease-in-out;
}
.form_checkbox input[type="checkbox"]:checked + label {
    background: #E61F23;
}
.form_checkbox input[type="checkbox"]:checked + label:before {
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    left: 1.6em;
    background: #fff;
}
.form_checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.form_checkbox p {
    margin: 0 0 0 10px;
    color: #fff;
    font-size: 15px;
    user-select: none;
}
.form_group .login_btn {
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all .2s;
	font-weight: bold;
	font-size: 15px;
	cursor: pointer;
	width: 100%;
	color: #fff;
	height: 36px;
	border: none;
	outline: none;
	box-shadow: none;
	line-height: 36px;
	background: #E61F23;
	text-shadow: 0px 1px 3px #000;
}
.form_group .login_btn:hover {
    background: rgba(0, 0, 0, 0.2);
}
.form_footer {
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 100%;
    margin-top: 20px;
}
.form_footer a:hover {
    text-shadow: 0px 1px 3px #e51f2380;
}
.form_footer a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    transition: all .2s;
}