
@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-shadow: border-box;
}

.fr {
    float: right
}

.pad-right1 {
    padding-right: 20px;
}

.box-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-image: url('../images/login/2a.jpg') !important;
    background-size: 115% 115%;
    animation: gradient 100s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.box {
    position: relative;
}

  .box .square {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        animation: square 10s linear infinite;
        animation-delay: calc(-1s * var(--i));
    }

@keyframes square {
    0%, 100% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }
}

.box .square:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 200px;
    right: -45px;
}

.box .square:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 200px;
    left: -125px;
    z-index: 2;
}

.box .square:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 85px;
    right: 450px;
    z-index: 2;
}

.box .square:nth-child(4) {
    width: 50px;
    height: 50px;
    bottom: 35px;
    left: -95px;
}

.box .square:nth-child(5) {
    width: 50px;
    height: 50px;
    top: -15px;
    left: -25px;
}

.box .square:nth-child(6) {
    width: 85px;
    height: 85px;
    top: 165px;
    right: -155px;
    z-index: 2;
}

.container {
    position: relative;
    padding: 50px;
    width: 400px;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

    .container::after {
        content: "";
        position: absolute;
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
        border-radius: 5px;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 2%);
    }

form {
    position: relative;
    width: 100%;
    height: 100%;
}

.form h2 {
    color: #65696b;
    letter-spacing: 0px;
    margin-bottom: 30px;
    font-family: "Open Sans";
    font-weight:700;
}

.form  input {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255,);
    padding: 8px 10px;
    padding-left: 20px;
    border-radius: 15px !important;
    color: #65696b;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form  button {
    width: 90%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255,);
    padding: 8px 10px;
    padding-left: 20px;
    border-radius: 15px;
    color: #65696b;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form .cancel {
    width: 90%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255,);
    padding: 8px 10px;
    padding-left: 20px;
    border-radius: 15px;
    color: #65696b;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align:center;
}

/* Dropdown Button */
.form-select {
    width: 100%;
    outline: none;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255,);
    padding: 8px 10px;
    padding-left: 20px;
    border-radius: 15px;
    color: #65696b;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
option {
    font-weight: normal;
    display: block;
    white-space: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
}

.form-select .option {
   
    font-size: 12px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);*/
}

.form  .password-control {
    position: absolute;
    top: 11px;
    right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(https://snipp.ru/demo/495/view.svg) 0 0 no-repeat;
    transition: 0.5s;
}

    
    



.form button[type=submit] {
    background: #1D9A6C;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #fff;
    max-width: 100px;
    padding: 8px 10px;
    box-shadow: none;
    letter-spacing: 0px;
    cursor: pointer;
    transition: 1.5s;
}
.form a[type=button] {
    background: #65696b;
    font-family: 'Open Sans';
    font-weight: 700;
    color: #fff;
    max-width: 100px;
    padding: 8px 10px;
    box-shadow: none;
    letter-spacing: 0px;
    cursor: pointer;
    transition: 1.5s;
}
    .form button[type=submit]:hover {
        background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));
        color: #1D9A6C;
        transition: 0.5s;
    }

    .form button[type=submit]:focus {
        background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));
        transition: 0.5s;
    }

.form a[type=button]:hover {
    background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));
    color: #1D9A6C;
    transition: 0.5s;
}

.form a[type=button]:focus {
    background: linear-gradient(115deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.25));
    transition: 0.5s;
}
.form input::placeholder {
    color: #fff;
}

.form button::placeholder {
    color: #fff;
}

/*.form span {
    position: absolute;
    left: 30px;
    padding: 10px;
    display: inline-block;
    color: #fff;
    transition: 0.5s;
    pointer-events: none;
}*/
.show-hide span {
    cursor: pointer;
    font-size: 17px;
    color: #000000;
}

.form input:active ~ .password-control
{
    position: absolute;
    top: 11px;
    right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(https://snipp.ru/demo/495/view.svg) 0 0 no-repeat;
    transition: 0.5s;
}

.form input:focus ~ span,
.form input:valid ~ span {
    transform: translateX(-30px) translateY(-25px);
    font-size: 10px;
}

.form button:focus ~ span,
.form button:valid ~ span {
    transform: translateX(-30px) translateY(-25px);
    font-size: 10px;
}


.form p {
    color: #65696b;
    font-size: 15px;
    font-weight: 700;
    margin-top: 5px;
}

    .form p a {
        color: #65696b;
        font-weight: 500;
        letter-spacing:0px
    }

        .form p a:hover {
            background-color: #1D9A6C;
            /*background-image: linear-gradient(to right, #434343 0%, black 100%);*/
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

/*Loader */
.loader-box {
    height: 24px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
    transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
}

    .loader-box [class*="loader-"] {
        display: inline-block;
        width: 50px;
        height: 50px;
        color: inherit;
        vertical-align: middle;
    }


    .loader-box .loader-15 {
        background: #a927f9;
        background: #1D9A6C;
        position: relative;
        -webkit-animation: loader-15 1s ease-in-out infinite;
        animation: loader-15 1s ease-in-out infinite;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        width: 0.25em;
        height: 0.5em;
        margin: 0 0.5em;
    }

        .loader-box .loader-15:after,
        .loader-box .loader-15:before {
            content: "";
            position: absolute;
            width: inherit;
            height: inherit;
            background: inherit;
            -webkit-animation: inherit;
            animation: inherit;
        }

        .loader-box .loader-15:before {
            right: 0.5em;
            -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
        }

        .loader-box .loader-15:after {
            left: 0.5em;
            -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
        }

    .loader-box .loader-in-control {
        position: absolute;
        top: 45px;
        right: 15px;
    }

@-webkit-keyframes loader-15 {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 #1D9A6C, 0 0 0 #1D9A6C;
        box-shadow: 0 0 0 #1D9A6C, 0 0 0 #1D9A6C;
    }

    50% {
        -webkit-box-shadow: 0 -0.25em 0 #1D9A6C, 0 0.25em 0 #1D9A6C;
        box-shadow: 0 -0.25em 0 #1D9A6C, 0 0.25em 0 #1D9A6C;
    }
}

@keyframes loader-15 {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 #1D9A6C, 0 0 0 #1D9A6C;
        box-shadow: 0 0 0 #1D9A6C, 0 0 0 #1D9A6C;
    }

    50% {
        -webkit-box-shadow: 0 -0.25em 0 #1D9A6C, 0 0.25em 0 #1D9A6C;
        box-shadow: 0 -0.25em 0 #1D9A6C, 0 0.25em 0 #1D9A6C;
    }
}

.landing-success {
    padding-bottom: 37px !important;
    font-size: 14px;
    color: green;
}

.landing-error {
    padding-bottom: 37px !important;
    font-size: 14px;
    color: #1D9A6C;
}

.info-txt {
    color: #65696b;
    letter-spacing: 0px;
/*    margin-bottom: 30px;
*/    font-family: "Open Sans";
    font-weight: 400 !important;
    font-size:10px !important; 
}

.dt-button .buttons-csv .buttons-html5 .btn .btn-round .btn-primary .export-botton {
    color: #ffffff !important;
    background-color: #1D9A6C !important;
    border-color: #1D9A6C !important;
}
