:root {
    --principal-color: #0077b6;
    --border-30: 30px;
    --border-15: 10px;
    /*btn*/
    --clr-font-main: hsla(0 0% 20% / 100);
    --btn-bg-1: #0077b6;
    --btn-bg-2: #1183c0;
    --btn-bg-color: hsla(360 100% 100% / 1);
    --radii: 0.5em;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dark {
    background: #110f16;
}

.sub-body {
    border-radius: var(--border-30);
}

.p-color {
    color: #0073b7;

}

.text-gv {
    color: var(--principal-color);
}


.btn-custom {
    cursor: pointer;
    padding: 0.9em 1.4em;
    margin: 1em auto;
    min-width: 120px;
    min-height: 44px;
    font-size: var(--size, 1rem);
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 500;
    transition: 0.8s;
    border: 1px solid #0077b6;
    background-color: #1183c0;
    border-radius: var(--radii);
    color: var(--btn-bg-color);
    background: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    background-size: 280% auto;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.btn-custom-sm {
    font-size: 14px;
}

.btn-custom:hover {
    background-position: right top;
}

.input-custom-bg {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto;
    width: 100%;
}

.input-custom-bg .input {
    position: relative;
    width: 100%;
}

.input-custom-bg .input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: var(--border-15);
    outline: none;
    color: #fff;
    font-size: 1em;
    transition: border .5s;
    font-weight: bold;

}

.input-custom-bg .input span {
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 1em;
    color: #fff;
    transition: transform .5s, background .5s, padding .5s;
}

.input-custom-bg .input input:valid~span,
.input-custom-bg .input input:focus~span {
    transform: translateX(10px) translateY(-7px);
    font-size: 0.70em;
    padding: 0 10px;
    background: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    border-radius: 5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-size: 280% auto;
}

.input-custom-bg .input input:valid,
.input-custom-bg .input input:focus {
    border: 1px solid var(--principal-color);
    box-shadow: 0 0 20px #1183c0;
}

.off-animation {
    position: relative;
    z-index: 100;
}

.animation-items {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.animation-items li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: #0077b6;
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.animation-items li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.animation-items li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.animation-items li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.animation-items li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.animation-items li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.animation-items li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.animation-items li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.animation-items li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.animation-items li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.animation-items li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}