html, body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 0;
}
html, body {
    min-height: 100%;
}
:focus {
    outline: none;
}
body {
	background-image: url('/img/login/bg.png?2');
	background-size: cover;
}
#wrapper {
	width:100%;
    margin: 0 auto;
}
.wrap {}
.form_cont {
    width: 460px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -276px;
    margin-left: -230px;
    height: 552px;
}
.form_cont_bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.91);
    padding: 55px 70px;
}
#form {
    width: 100%;
}
#form .f-title {
    display: block;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}
#form .i_c {
    position: relative;
    padding: 0px;
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
}
#form input + .focus-border{position: absolute;bottom: -2px;left: 50%;width: 0;height: 2px;background-color: #d50032;transition: 0.4s;}
#form input:focus + .focus-border{width: 100%; transition: 0.4s; left: 0;}
#form svg {
    display: inline-block;
    vertical-align: top;
    fill: #000;
}
#form img {
    display: inline-block;
    vertical-align: top;
}
#form input {
    min-width: 280px;
    display: inline-block;
    vertical-align: top;
    padding: 5px 0px 20px 20px;
    font-size: 14px;
    background-color: transparent;
    border: none;
    color: #000;
}
#form input::placeholder {
    color: #777;
}
#form .f-enter {
    width: 100%;
    padding: 15px 0px;
    margin-top: 20px;
    font-size: 28px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border: none;
    background-color: #d50032;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}
#form .opt-func {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#form .opt-func button {
    display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    color: #000;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
#form .opt-func button:hover {
    text-decoration: underline;
}
#form .opt-func .f-reg {
    text-align: left;
}
#form .opt-func .f-rec-pass {
    text-align: right;
}