html {
  font-size: 14px;

}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #d4e5ff;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: white;;
}
.loginButton {
    position: relative;
    background: #444;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    padding: 1rem 3rem;
    transition: 0.2s;
}

    .loginButton:hover {
        letter-spacing: 0.2rem;
        padding: 1.1rem 3.1rem;
        background: black;
        color: white;
        box-shadow: 0 0 10px #d4e5ff;
        animation: box 3s infinite;
    }

    .loginButton::before {
        position: absolute;
        inset: 2px;
        background: #272822;
    }

    .loginButton span {
        position: relative;
        z-index: 1;
    }

    .loginButton i {
        position: absolute;
        inset: 0;
        display: block;
    }

        .loginButton i::before {
            content: "";
            position: absolute;
            width: 10px;
            height: 2px;
            left: 80%;
            top: -2px;
            border: 2px solid #d4e5ff;
            background: #272822;
            transition: 0.2s;
        }

    .loginButton:hover i::before {
        width: 15px;
        left: 20%;
        animation: move 3s infinite;
    }

    .loginButton i::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 2px;
        left: 20%;
        bottom: -2px;
        border: 2px solid #d4e5ff;
        background: #272822;
        transition: 0.2s;
    }

    .loginButton:hover i::after {
        width: 15px;
        left: 80%;
        animation: move 3s infinite;
    }

@keyframes move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes box {
    0% {
        box-shadow: #27272c;
    }

    50% {
        box-shadow: 0 0 25px #d4e5ff;
    }

    100% {
        box-shadow: #27272c;
    }
}

.formHolder {
    width: 500px;
}
@media(max-width: 800px ){

    .formHolder {
        width: 265px;
    }
}

.login-box {
    /*width: 600px;*/
    max-width: 600px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgb(0 60 90 / 60%);
    border-radius: 10px;
    border: 1px solid #4194f7;
}

    .login-box h2 {
        margin: 0 0 30px;
        padding: 0;
        color: #fff;
        text-align: center;
    }

    .login-box .user-box {
        position: relative;
    }

        .login-box .user-box input {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            margin-bottom: 30px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .login-box .user-box label {
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            pointer-events: none;
            transition: .5s;
        }

        .login-box .user-box input:focus ~ label,
        .login-box .user-box input:valid ~ label {
            top: -20px;
            left: 0;
            color: #03e9f4;
            font-size: 12px;
        }

    .login-box form a {
        position: relative;
        display: inline-block;
        padding: 10px 20px;
        color: black;
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        overflow: hidden;
        transition: .5s;
        margin-top: 40px;
        letter-spacing: 4px
    }

    .login-box a:hover {
        background: #2A4F3E;
        color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 5px #2A4F3E, 0 0 25px #2A4F3E, 0 0 50px #2A4F3E, 0 0 100px #2A4F3E;
    }

    .login-box a span {
        position: absolute;
        display: block;
    }

        .login-box a span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #03e9f4);
            animation: btn-anim1 1s linear infinite;
        }

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,100% {
        left: 100%;
    }
}

.login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,100% {
        top: 100%;
    }
}

.login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,100% {
        right: 100%;
    }
}
.login-box h2{
    color: black;
}
.login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,100% {
        bottom: 100%;
    }
}

.loginBox-container {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
/*    background: #d4e5ff;*/
}

.buttonSend {
    font-family: inherit;
    font-size: 20px;
    background: royalblue;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    width: 115px;
    height: 40px;
}

    .buttonSend span {
        display: block;
        margin-left: 0.3em;
        transition: all 0.3s ease-in-out;
    }

    .buttonSend svg {
        display: block;
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
    }

    .buttonSend:hover .svg-wrapper {
        animation: fly-1 0.6s ease-in-out infinite alternate;
    }

    .buttonSend:hover svg {
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

    .buttonSend:hover span {
        transform: translateX(5em);
    }

    .buttonSend:active {
        transform: scale(0.95);
    }

    .buttonSend:focus svg {
        offset-path: path('M10,190 L20,1 Z');
        motion-rotation: reverse;
        animation: move 1s linear;
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

@keyframes move {
    100% {
        motion-offset: 100%;
        offset-distance: 50%;
    }
}

:root {
    --container-padding: 32px;
    --background-color: #0C1618;
    --svgWrapper-max-width: 767px;
    --svgWrapper-padding-bottom: 20%;
    --svg-stroke-width: 8;
    --svg-stroke-dasharray: 60 170;
    --animation-time: 2s;
    --svg-stroke-color: #156f5b;
    --svg-filter-blur: 5px;
    --svg-z-index: 1;
    --stroke-dashoffset: 232;
    --animation-delay: .3s;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.log-wrap-def {
    padding-left: 30rem;
    padding-bottom: 15rem;
    border-radius: 12px;
    margin-top: 12rem;
}
@media(max-width: 1300px) {
    .log-wrap-def {
        padding-left: 35%;
        padding-bottom: 15rem;
        margin-top: 12rem;
    }
}
@media(max-width:900px){
    .column{
        width:800px;
    }
}
@media(max-width: 800px){
    .log-wrap-def {
        padding-left: 4px;
        padding-right: 4px;
        padding-bottom: 15rem;
        margin-top: 12rem;
    }
    .column{
        width:auto;
    }

}

.svgWrapper {
    position: relative;
    width: 100%;
    block-size: auto;
    max-inline-size: var(--svgWrapper-max-width);
    margin: 0 auto;
    padding-block-end: var(--svgWrapper-padding-bottom);
    overflow: hidden;
}

    .svgWrapper svg {
        fill: none;
        stroke: url(#col);
        stroke-width: var(--svg-stroke-width);
        stroke-dasharray: var(--svg-stroke-dasharray);
        stroke-linecap: round;
        animation: svgLoop var(--animation-time) linear infinite;
        animation-delay: var(--animation-delay);
        position: absolute;
        inset-block-start: 0;
        inset-inline-start: 0;
        width: 100%;
        block-size: 100%;
    }

        .svgWrapper svg:nth-of-type(1) {
            animation: none;
            stroke: var(--svg-stroke-color);
            stroke-dasharray: none;
            z-index: 0;
        }

        .svgWrapper svg:nth-of-type(2) {
            filter: blur(var(--svg-filter-blur));
        }

        .svgWrapper svg:nth-of-type(3) {
            stroke: var(--svg-stroke-color);
            stroke-width: var(--svg-stroke-width);
            stroke-linecap: butt;
            animation: svgLayer var(--animation-time) linear infinite;
            stroke-dasharray: 17 200;
            opacity: 0;
            z-index: var(--svg-z-index);
        }

@keyframes svgLoop {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: var(--stroke-dashoffset);
    }
}

@keyframes svgLayer {
    50% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.gif-img {
    height: 40px;
    width: 40px;
}

@media(min-width : 1270px) {
    .loginBox-container {
        padding-top: 50px;
        padding-bottom: 50px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
.EyeButton {
    z-index: 1;
    border: none;
    background: none;
    position: absolute;
    top: 0.7rem;
    display: flex;
    right: 0.7rem;
    color: grey;
    padding: 10px;
    align-items: center;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.EyeButton:hover {
    background: grey;
    color: white;
}