﻿body {
    font-family: 'Shippori Antique B1', sans-serif;
}

.bg-login {
    background-image: url(../images/login-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

label {
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.form-sec .form-control {
    padding-left: 40px;
    position: relative;
}

    .form-sec .form-control::placeholder {
        color: var(--placeholder-color);
        font-size: 14px;
    }

.uname-bg:before {
    content: url(../images/Username.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: bottom;
    position: absolute;
    top: 10px;
    width: 30px;
    height: 30px;
    z-index: 999;
    left: 10px;
}

.uname-bg, .pwd-bg, .forgetmail {
    position: relative;
}

    .pwd-bg:before {
        content: url(../images/Password.png);
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: bottom;
        position: absolute;
        top: 10px;
        width: 30px;
        height: 30px;
        z-index: 999;
        left: 10px;
    }

    .forgetmail:before {
        content: url(../images/forgetmail.png);
        background-repeat: no-repeat;
        background-size: 15px;
        background-position: bottom;
        position: absolute;
        top: 10px;
        width: 30px;
        height: 30px;
        z-index: 999;
        left: 10px;
    }

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}

    .btn-primary:hover {
        color: var(--primary-color);
        background-color: #fff;
        border-color: var(--primary-color);
    }

.btn-login {
    min-width: 150px;
}

.font-14 {
    font-size: 14px;
}

.font-weight-light {
    letter-spacing: 1px;
}

.pass-group {
    position: relative;
}

.toggle-password.fa-eye {
    margin-right: 1px;
}


.toggle-password {
    position: static;
    right: 17px;
    top: 50%;
    transform: none;
    color: #757575;
    cursor: pointer;
    font-size: smaller;
    z-index: 9999;
}

.eye-btn {
    border-color: #ced4da !important;
}

.eye-btn:focus, .eye-btn:hover, .eye-btn:active {
    background-color: transparent !important;
}
.form-control:focus {
    box-shadow: none !important;
}