/* HTML Template */
* {
    list-style: none;
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

#login-portal-bg {
    background-image: url("/images/portal-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    animation: animateBg 3s linear infinite;

}



animate-colors {
    animation: animateBg 3s linear infinite !important;
}

@keyframes animateBg {
    100% {
        z-index: -1;
        filter: hue-rotate(360deg);
    }

}


ul {
    list-style-type: circle;
    color: #ffffff;
    font-size: 1.5em;
}

/* Login Form */
.form-login {
    font-size: 1.5em;
    margin: 20px 0 10px 0;
    color: #000000;
}

.box {
    background: rgba(255, 255, 255, 90%);
    width: 350px;
    height: 460px;
    /*border-radius: 5 px;*/
    margin: 0 auto 0 auto;
    padding: 20px 0px 70px 0px;
    border: rgb(209, 203, 203) 1px solid;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 2vw;
    /*padding: 30 px;*/
    /*padding: 0 px;*/
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /*backdrop-filter: blur(15px);*/
}

.payment-box {
    background: rgba(255, 255, 255, 90%);
    min-width: max-content;
    max-height: fit-content;
    /*border-radius: 5px;*/
    margin: 0 auto 0 auto;
    padding: 20px 0px 70px 0px;
    border: rgb(209, 203, 203) 1px solid;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 2vw;
    /*padding: 30px;*/
    /*padding: 0px;*/
    -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;

}

.img-center {
    display: block; !important;
    margin-left: auto;!important;
    margin-right: auto;!important;
}

/*.rainbow{
    height: 250px;
    width: 250px;
    position: absolute;

    top: 50%;
    left: 50%;
    border-radius: 5px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);

}

.rainbow:before{
    height: 150%;
    width: 150%;
    position: absolute;
    background: conic-gradient(
        #fd004c,
        #fe9000,
        #fff020,
        #3edf4b,
        #3363ff,
        #b102b7,
        #fd004c
    );
    left: -25%;
    top: -25%;
    animation: spin 1.5s infinite linear;
}
@keyframes spin{
    100%{
        transform: rotate(-360deg);
    }
}
.rainbow:after{
    position: absolute;
    background-color: #1c1b29;
    height: 93%;
    width: 93%;
    top: 3.5%;
    left: 3.5%;
    border-radius: 5px;
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 6px;
    display: grid;
    place-items: center;

}*/

.rainbow {
    --angle: 0deg;
    border: 0.5vw solid transparent;
    border-radius: 1vw;
    border-image: conic-gradient(from var(--angle), red, yellow, lime, aqua, blue, magenta, red) 10;
    animation: 8s rotate linear infinite;
    -webkit-mask: /*4*/ linear-gradient(#fff0 0 0) padding-box,
    linear-gradient(#fff 0 0);
    /*--webkit-mask-composite: xor; !*5'*!*/
    mask-composite: exclude; /*5*/
    background-origin: border-box;
    box-shadow: inset 0 100vw white;
    /* A transparent border, so the very edge of the button shows through */
    /*border: 2px solid transparent;*/
}

/*
// Rotate .rainbow colors
@keyframes rotate {
    to {
        --angle: 360deg;
    }
}*/

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}


@media screen and (max-width: 600px) {
    .portal-text {
        visibility: hidden;
        display: none;
        /*background: rgb(255 255 255 / 20%);*/
        /*border: rgb(179 159 159) 1px solid;*/
        /*padding: 0px 100px 0px 0px;*/
    }

    .rainbow {
        --angle: 0deg;
        border: 1.5vw solid transparent;
        border-radius: 2vw;
        border-image: conic-gradient(from var(--angle), red, yellow, lime, aqua, blue, magenta, red) 10;
        animation: 8s rotate linear infinite;
        -webkit-mask: /*4*/ linear-gradient(#fff0 0 0) padding-box,
        linear-gradient(#fff 0 0);
        /*--webkit-mask-composite: xor; !*5'*!*/
        mask-composite: exclude; /*5*/
        background-origin: border-box;
        box-shadow: inset 0 100vw white;
        /* A transparent border, so the very edge of the button shows through */
        /*border: 2px solid transparent;*/
    }
}

@media screen and (min-width: 601px) and (max-width: 1140px) {
    .portal-text {
        align-content: center;
        display: flex;
        justify-content: center;
        /*background: rgb(255 255 255 / 20%);*/
        /*border: rgb(179 159 159) 1px solid;*/
        /*padding: 0px 100px 0px 0px;*/
    }

    ul {
        font-size: 1.0em;
    }

    .login-box {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .rainbow {
        --angle: 0deg;
        border: 1.0vw solid transparent;
        border-radius: 2vw;
        border-image: conic-gradient(from var(--angle), red, yellow, lime, aqua, blue, magenta, red) 10;
        animation: 8s rotate linear infinite;
        -webkit-mask: /*4*/ linear-gradient(#fff0 0 0) padding-box,
        linear-gradient(#fff 0 0);
        /*--webkit-mask-composite: xor; !*5'*!*/
        mask-composite: exclude; /*5*/
        background-origin: border-box;
        box-shadow: inset 0 100vw white;
        /* A transparent border, so the very edge of the button shows through */
        /*border: 2px solid transparent;*/
    }
}

.input-login {
    background: #ecf0f1;
    border: #ccc 1px solid;
    border-bottom: #ccc 2px solid;
    padding: 8px;
    width: 250px;
    color: #7a7878;
    margin-top: 10px;
    font-size: 1em;
    border-radius: 4px;
    text-align: center;
}

#absoluteCenteredDiv {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 400px;
    height: 300px;
    text-align: center;
}

#absoluteCenteredDiv .box .mismatch {
    margin-top: 15px;
    color: rgb(255, 255, 255);
    font-size: 12px;
}

.tab {
    display: inline-block;
    margin-left: 40px;
}
