﻿:root {
    --fa-primary-color: rgb(254, 63, 64);
    --fa-secondary-color: rgb(3, 164, 237);
    --red: var(--fa-primary-color);
    --blue: var(--fa-secondary-color);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    font-family: "Cambria", sans-serif;
}

.vf-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.vf-row {
    display: inline-flex;
    margin-left: -50px;
    margin-top: -32px;
    overflow: hidden;
}

    .vf-row:nth-child(even) {
        margin-left: 1px;
    }

.hexagon {
    position: relative;
    height: 110px;
    width: 100px;
    background: #fff;
    margin: 1px;
    /*clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);*/
    clip-path:circle();
    transition: 2s;
}

.hexagon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.02);
}

.hexagon:hover {
    transition: 0s;
    background: #0f0;
    cursor: unset;
}

.section {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
    background: #d2ffe1;
    /*animation: animate 4s linear infinite;*/
}


    .section .signin {
        position: absolute;
        width: 400px;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 9);
    }
.border-gardient .content,
.section .signin {
    background: white;
}
    .section .signin .content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    flex-direction: column;
    gap: 40px;
}
    .section .signin .content form {
        width: calc(100% - 2.75em);
    }
    .section .signin .content form .card-header em {
        font-style: unset;
        color: red;
        font-weight: bolder;
    }

    .section .signin .content form .card-header {
        color: blue;
        font-weight: bolder;
        font-family: "Cambria";
        font-variant: small-caps;
        animation: unset;
    }
        .section .signin .content h2 {
            font-size: 2em;
            color: var(--fa-secondary-color);
            text-align: center;
            font-family: "Cambria", sans-serif;
            font-weight: bold;
        }
            .section .signin .content .buttonBack {
                position: relative;
                float:left;
                color:var(--fa-secondary-color);
            }
                .section .signin .content .buttonBack i {
                    font-size: 32px;
                }
.section .signin .content h2 em {
    color:var(--fa-primary-color);
    font-style:inherit;
    font-family: "Cambria", sans-serif;
    font-weight: bold;
}
.signin .content form .links{
    float:right;
}
.signin .content form .links a {
    position: relative;
    width: 100%;
    justify-content: space-between;
    color: var(--fa-secondary-color);
    text-decoration: none;
    font-family: "Cambria", sans-serif;
    /*animation: animate 4s linear infinite;*/
}
@media(max-width: 425px) {
    .hexagon {
        display: none !important;
    }

    .section {
        background: white;
    }
}

.border-gardient .content {
    position: relative;
    z-index: 2;
    padding: .875rem 0;
    font-size: 1.1rem;
    align-items: center;
    border-radius: 8px;
    display: block;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
}

.border-gardient {
    margin: 0 auto;
    width: calc(100% - 2.75rem);
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-sizing: border-box;
    display: block;
    z-index: 2;
    overflow: hidden;
    padding: 8px;
}

    .border-gardient:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: linear-gradient(115deg,#4fcf70,#fad648,#a767e5,#12bcfe,#44ce7b);
        background-size: 50% 100%;
        animation: border-gardient-animation 1.5s linear infinite;
    }

    .border-gardient:focus:before,
    .border-gardient:hover:before {
        animation: border-gardient-animation 1.5s linear infinite;
    }

@keyframes border-gardient-animation {
    to {
        transform: translateX(-50%)
    }
}
.dx-validationsummary-item {
    float: left;
}