body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    font-size: 100%;
    font-family: 'Magra', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/*-- form content --*/

.loginBox>h3 {
    display: inline-block;
}

.formBox p {
    float: right;
    padding: 20px 45px 0 0;
}

.formBox p>a {
    color: #b2b2b2;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.formBox p>a:hover {
    color: #25b4ed;
}

.formBox {
    text-align: center;
    margin: 4em 0 4em;
}

.formBox .loginBox {
    width: 460px;
    max-width: 100%;
    height: 442px;
    border-radius: 8px;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    text-align: left;
    box-shadow: 0px 2px 11px -2px rgba(0, 0, 0, 0.5);
}

.formBox h3 {
    color: #25b4ed;
    padding: 0px 45px;
    font-size: 30px;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Magra', sans-serif;
}

.formBox p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #696969;
}

label {
    margin-bottom: .8rem;
    display: block;
    letter-spacing: 1px;
}

.formBox form {
    display: block;
    padding: 0px 50px;
    position: relative;
}

.formBox .f_row {
    position: relative;
    margin-bottom: 30px;
    height: 50px;
}

input.input-field {
    width: 100%;
    color: #000;
    outline: none;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 15px 15px;
    box-sizing: border-box;
    border: none;
    border: none;
    margin-bottom: 1rem;
    border: 1px solid #bbb;
}

.submit {
    background-color: #25b4ed;
    border: none;
    cursor: pointer;
    font-family: 'Magra', sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    box-shadow: 0px 3px 9px 1px rgba(0, 0, 0, 0.25);
    margin-top: 1em;
}

.f_link {
    text-align: center;
    padding-top: 50px;
}

.f_link a {
    text-decoration: underline;
    color: #b2b2b2;
    font-size: 14px;
    transition: all 0.6s ease;
    letter-spacing: 1px;
}

.f_link a:hover {
    color: #25b4ed;
}

/*-- //form content --*/