@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}
.modal-backdrop{
    display: none;
}
.middle-prnt {
    position: relative;
    display: table;
    min-height: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

/* Login Design */

.login {
    background: #f4dbc3;
    height: 100vh;
    position: relative;
}

.login-box {
    width: 800px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
    box-shadow: 0px 10px 20px 0px rgba(122, 125, 141, 0.3);
}

.login-img-sec {
    height: 100%;
    background: #EFDFD0;
}

.login-img-sec img {
    width: 100%;
}

.login-form-sec {
    padding: 30px 30px 30px 0;
}

.login-logo {
    text-align: center;
}

.login-logo img {
    height: 120px;
}

.login-logo h2 {
    padding-top: 20px;
    font-size: 16px;
    color: #A6A8A7;
    text-transform: uppercase;
    margin: 20px 0 30px;
    border-top: 1px solid #e2e2e2;
}

/* Login Design End */

/* Main Pages */
.tbl-action-btn {
    font-size: 14px;
    color: green;
    height: 24px;
    width: 24px;
    padding: 0;
    margin-right: 5px;
    line-height: 24px;
    text-align: center;
    display: list-item;
    list-style: none;
    border: 1px solid green;
    border-radius: 100%;
    transition: all 0.2s ease;
}
.tbl-action-btn.delete {
    color: red;
    border: 1px solid red;
}

.tbl-action-btn:hover {
    background: green;
    color: #fff;
}
.tbl-action-btn.delete:hover {
    background: red;
    color: #fff;
}

@media(max-width: 991px) {
    .login-box {
        width: 90%;
    }

    .login-img-sec {
        display: none;
    }

    .login-form-sec {
        padding: 30px;
    }
}