:root {
    --color-border-tranform: rgba(210, 210, 210, 0.5);
    --color-auth-primary: rgb(33, 33, 33);
    --bg-btn-primary: rgb(41, 81, 142);
    --bg-btn-hover-primary: rgba(0, 54, 136);
    --bg-social-icon: rgba(240, 248, 255, 0.8);
    --bg-social-icon-hover: rgba(255, 255, 255, 0.5);
    --color-border-social-icon: rgba(0, 52, 130, 0.2);

}


.bg-cover {
    position: relative;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
    -ms-overflow: hidden;
}

.auth-form-signin {
    width: 100%;
    max-width: 480px;
    padding: 2.4rem;
    margin: auto;
    background: rgba(248, 251, 255, 0.5);
    border-radius: 1rem;
}

@media (max-width: 576px) {
    .auth-form-signin {
        width: 100%;
        height: 100%;
        padding: 1.4rem;
        margin: auto;
        background: rgba(248, 251, 255, 0.25);
        border-radius: 0rem;
        box-shadow: none !important;
    }    
}

.auth-input-group .input-group-text {
    background: rgba(248, 251, 255, 0.7);
    color: var(--color-auth-primary);
    /* border: unset; */
    border: 1px solid var(--color-border-tranform);
}

.auth-input-group .form-control {
    /* border: unset;
    border-left: 1px solid rgba(130, 130, 130, 0.5); */
    border: 1px solid var(--color-border-tranform);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.5);
}

.auth-input-group .form-control:focus {
    box-shadow: unset;
    background: #ffffff;
}


.auth-btn-primary {
    background-color: var(--bg-btn-primary) !important;
    color: #fff;
}

.auth-btn-primary:hover,
.auth-btn-primary:active,
.auth-btn-primary:focus {
    background-color: var(--bg-btn-hover-primary) !important;
    color: #fff !important;
}

.auth-form-check-input {
    border: 1px solid #a8a8a8;
    padding: 0.7rem;
}

.form-check-label {
    margin-top: 0.24rem;
    margin-left: 0.4rem;
}

.auth-form-check-input:checked {
    background-color: #3387ee;
    border-color: var(--color-border-tranform);
}

.forget-passwords {
    margin-top: 0.24rem;
}


.auth-social-login .auth-social-icon+.auth-social-icon {
    margin-left: 15px;
}

.auth-social-icon {
    width: 3.2rem;
    height: 3.2rem;
    background-color: var(--bg-social-icon);
    border-radius: 50%;
    border: 1px solid var(--bg-social-icon);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
}

.auth-social-icon .fa-line {
    color: #06C755;
}

.auth-social-icon:hover {
    opacity: 1;
    background-color: var(--bg-social-icon-hover);
    border: 2px solid var(--color-border-social-icon);
}

.auth-social-icon:hover i {
    color: #fff;
}

.auth-social-icon:hover i.fa-line {
    color: #4CC764;
}