@import url("font-awesome.min.css");

* {
    font-family: "Nunito" !important;
    color: #001c2f;
}

body {
    overflow: hidden;
    background-color: #001c2f;
    background-image: url(../img/bg-scanner.png);
    background-repeat: no-repeat;
    background-size: 120%;
    background-position-x: -50%;
    background-position-y: 40%;
}

.float-right {
    float: right;
}

.container-fluid {
    width: auto;
}

.intro-text h2 {
    font-weight: 800 !important;
}

.login-div {
    display: flex;
    justify-content: right;
    height: 100vh;
    margin-right: 10%;
}

.login-container {
    background: #f0f1f1;
    border-radius: 35px;
    padding: 15px 25px 25px 25px;
    width: 27em;
}

.brand-logo {
    width: 190px;
}

.login-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
}

.intro-text {
    font-size: medium;
    padding: 2px 3px 2px 14px;
}

.border-grey {
    border: solid 2px gray !important;
}

.border-red {
    animation: shake 0.2s ease-in-out 0s 2;
    box-shadow: 0 0 0.5em red;
}

@keyframes shake {
    0% { margin-left: 0rem; }
    25% { margin-left: 0.5rem; }
    75% { margin-left: -0.5rem; }
    100% { margin-left: 0rem; }
}

input:focus {
    border: solid 2px gray !important;
    box-shadow: 0 0 0 1px #808080 !important;
}

input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    right: 9000px;
}

/*Check box*/
input[type="checkbox"]+.label-text:before {
    content: "\f096";
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
}

.check-label {
    font-size: 16px;
}

input[type="checkbox"]:checked+.label-text:before {
    content: "\f14a";
    color: #e20c77;
    animation: effect 250ms ease-in;
}

input[type="checkbox"]:disabled+.label-text {
    color: #aaa;
}

input[type="checkbox"]:disabled+.label-text:before {
    content: "\f0c8";
    color: #ccc;
}

.btn-login {
    font-size: 18px;
    font-weight: 700;
    background-color: #e20c77;
    border-color: #e20c77;
}

.btn-info {
    background-color: #e20c77 !important;
    border-color: #e20c77 !important;
}


.btn-login:active{
    background: #e20c77 !important;
    border-color: #e20c77 !important;
}
.btn-login:focus{
    box-shadow: none !important;
}

@media screen and (max-width: 768px) {
    body {
        overflow: hidden;
        background-color: #001c2f;
        background-image: none;
    }

    .login-div {
        justify-content: center;
        height: 100vh;
        margin-right: 0;
    }

    .brand-logo {
        width: 180px;
    }

    .login-container {
        background: #f0f1f1;
        border-radius: 35px;
        padding: 15px 25px 25px 25px;
        width: 100%;
    }
}