:root {
    --font-primary: 'Poppins', sans-serif;
    --primary: #4a90e2;
}

body {
    font-family: var(--font-primary);
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animated-bg {
    position: relative;
    z-index: 2;
    /* backdrop-filter: blur(10px); */
    color: #fff;
    /* font-size: 30px; */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.2);

}

.animated-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(50deg, rgba(168, 139, 191,0.3), rgba(107, 33, 168,0.3), rgba(101, 0, 201,0.3)); */
    background-size: 300% 300%;
    backdrop-filter: blur(4px);
    /* filter: blur(20px); */
    /* animation: backgroundAnimation 6s infinite linear; */
    z-index: -1;
    /* opacity: 0.4; */
    border-radius: 10px;
    ;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
}

.form-container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.bg-blur {
    backdrop-filter: blur(10px);
    /* background: rgba(255, 255, 255, 0.1); */
}
.bg-color{
    background: purple;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    backdrop-filter: blur(10px);
}
.error{
    font-size: 12px;
    color: #ff000d;
    text-shadow: 0px 0px 1px #ffe8e8;
}

@keyframes shake {
0%, 100% {
    transform: translateX(0);
}
25% {
    transform: translateX(-5px);
}
50% {
    transform: translateX(5px);
}
75% {
    transform: translateX(-5px);
}
}

.border-error {
box-shadow: 5px 1px 14px 2px rgba(255, 0, 0, 0.5);
animation: shake 0.3s ease-in-out;
}