:root {
    --lgn-txt-brdr-rad: 50px;
    --lgn-modal-w: 400px;
    --lgn-form-margin: auto 60px;
}

#loginModal .modal-content {
    /*  border: 1px solid rgba(0,0,0,.2);*/
    border-radius: 30px;
}

.btn-login-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #22B56C;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.btn-login-close:hover {
    color: #00A551;
    text-decoration: none;
    opacity: 0.75;
}

#loginModal .btn-close {
    color: #22B56C;
    margin-left: 21em;
    width: 1em;
    height: 1em;
}

#loginModal .modal-body,
#loginModal .modal-dialog {
    height: auto;
    width: var(--lgn-modal-w);
}

#login-form {
    height: auto;
    overflow-y: auto;
    width: 240px;
    margin: var(--lgn-form-margin);
}

.login-title {
    font-family: "Raleway SemiBold";
    font-size: 23px;
    text-align: center;
    color: #021061;
}

.login-brdr {
    border: 1px solid #E7E7E7;
    background-color: white;
}

.input-container>input {
    background-size: 30px auto;
    padding-left: 50px;
    height: 40px;
    margin-bottom: 5px;
}

#login-form>.input-container:nth-child(1)>input {
    background: url(../img/login/lgn-name.jpg) no-repeat scroll 12px 7px;
}

#login-form>.input-container:nth-child(2)>input {
    background: url(../img/login/lgn-psw.jpg) no-repeat scroll 12px 7px;
}

input.login-inputs {
    border-top-left-radius: var(--lgn-txt-brdr-rad);
    border-bottom-left-radius: var(--lgn-txt-brdr-rad);
    border-top-right-radius: var(--lgn-txt-brdr-rad);
    border-bottom-right-radius: var(--lgn-txt-brdr-rad);

    font-family: "Raleway Regular";
    font-size: 18px;

    margin: 3px 1%;
    width: 98%;
}

.login-inputs:active,
.login-inputs:focus {
    border: 2px solid #ACACAB;
    background-image: none !important;
}

.login-inputs::placeholder {
    color: #C8C8C8;
    font-family: "Raleway Regular";
    font-size: 18px;
}

.login-inputs:focus::placeholder {
    color: transparent;
}

.login-inputs:focus {
    outline: none;
}

.btn-login-gp:focus,
#loginModal .btn-close:focus,
.authorization__button {
    box-shadow: none !important;
}

.btn-login-gp:hover {
    background-color: #00A551;
    color: #fff;
}

.btn-login-gp {
    font-family: "Raleway SemiBold";
    font-size: 18px;

    color: #fff;
    background-color: #00B76C;

    border-color: #00B76C;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;

    margin: 12px 1.5% 3px;
    width: 96%;
}

.login-psw-recover {
    cursor: pointer;
}

.login-psw-recover,
.login-psw-recover-text,
.login-emptyf,
.login-mistake,
.login-blocked,
.login-unknown-ip,
.login-unknown-error {
    color: #747474;
    font-family: "Raleway Light";
    font-size: 16px;
}

.login-psw-recover-text>span {
    font-family: "Montserrat Medium";
}

.login-psw-recover,
.login-psw-recover-text,
.login-blocked,
.login-unknown-ip,
.login-unknown-error {
    margin-top: 6px;
}

#loginModal .modal-dialog {
    max-width: var(--lgn-modal-w);
    margin: 1.75rem auto;
}

@media (min-width:300px) {
    :root {
        --lgn-txt-brdr-rad: 50px;
        --lgn-modal-w: 300px;
        --lgn-form-margin: auto;
    }
}


@media (min-width:400px) {
    :root {
        --lgn-txt-brdr-rad: 50px;
        --lgn-modal-w: 400px;
    }
}

@media (min-width:576px) {
    :root {
        --lgn-txt-brdr-rad: 30px;
        --lgn-modal-w: 500px;
    }
}

@media (min-width:768px) {
    :root {
        --lgn-txt-brdr-rad: 50px;
        --lgn-modal-w: 500px;
    }
}

@media (min-width:992px) {
    :root {
        --lgn-txt-brdr-rad: 25px;
        --lgn-modal-w: 500px;
    }
}

@media (min-width:1400px) {
    :root {
        --lgn-txt-brdr-rad: 50px;
        --lgn-modal-w: 500px;
    }
}