* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none i !important;
}

body {
    font-family: sans-serif;
}

.login-form {
    height: 100vh;
    background-image: url('../images/bullseye.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .box {
    min-width: 400px;
    min-height: 450px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #cccccc;
    display: flex;
    flex-direction: column;
}

.login-form .box .img img {
    width: 100px;
    display: block;
    margin: auto;
}

.login-form .box .heading h4 {
    color: #0089fe;
    font-size: 22px;
    text-align: left;
    margin: 15px 0px 20px;
    border-bottom: 1px solid;
    padding-bottom: 3px;
    display: inline-block;
}

.login-form .box .form-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-form .box .form-fields .input-box {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.login-form .box .form-fields .input-box .form-control {
    height: 40px;
    width: 100%;
    padding: 0px 0px 0px 45px;
    color: #444444;
    border: 1px solid #cccccc;
}

.login-form .box .form-fields .input-box .form-control::placeholder {
    color: #cccccc;
}

.login-form .box .form-fields .input-box span {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.login-form .box .form-fields .input-box span img {
    width: 22px;
}

.login-form .box .form-fields .button-box {
    width: 100%;
    display: flex;
    align-items: center;
}

.login-form .box .form-fields .button-box button {
    color: #ffffff;
    font-size: 16px;
    padding: 8px 35px;
    background-color: #0089fe;
    transition: box-shadow .5s ease;
    border: none;
    cursor: pointer;
    margin-right: 15px;
}

.login-form .box .form-fields .button-box button:hover {
    box-shadow: 0px 0px 10px #cccccc;
}

.login-form .box .form-fields .button-box a {
    font-size: 16px;
    color: #0089fe;
}

.login-form .box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.login-form .box p {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin: 20px 0px 15px;
}