.flenter {
    display: flex;
    align-items: center;
    justify-content: center;
}
.frow {
    flex-direction: row;
}
.link {
    color: #b2b2b2;
    text-decoration: none;
    transition: all .2s ease;
}
.link:hover, .link:focus {
    color: #8b84ff;
    transform: scale(1.4);
}
.datenschutz {
    color: #8a8a8a;
    text-decoration: none;
    transition: all .2s ease;
}


/* From Uiverse.io by gharsh11032000 */
.form-container {
    width: 400px;
    background: linear-gradient(#212121, #212121) padding-box,
    linear-gradient(145deg, transparent 25%,#e81cff, #40c9ff) border-box;
    border: 2px solid transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    justify-content: center;
    align-items: center;

}

.form-container button:active {
    scale: 0.95;
}

.form-container .form {
    display: flex;
    flex-direction: column;
    /*gap: 20px;*/
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/*.form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 12px;
}*/
.agent-box {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 140px;
    height: 140px;
    overflow: hidden;
    z-index: 9000;
}
.form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    background-color: transparent;
    border: 1px solid #414141;
}

.form-container .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    resize: none;
    color: #fff;
    height: 96px;
    border: 1px solid #414141;
    background-color: transparent;
    font-family: inherit;
}

.form-container .form-group input::placeholder {
    opacity: 0.5;
}

.form-container .form-group input:focus {
    outline: none;
    border-color: #e81cff;
}

.form-container .form-group textarea:focus {
    outline: none;
    border-color: #e81cff;
}

.form-container .form-submit-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /*align-self: flex-start;*/
    font-family: inherit;
    color: #717171;
    font-weight: 600;
    width: 40%;
    max-width: 76px;
    background: #fff;
    border: 1px solid #414141;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 6px;
}
.form-submit-btn {
    transition: all 0.3s ease;
    position: relative;
}
.form-container .form-submit-btn:hover {
    background: linear-gradient(135deg, #e81cff, #40c9ff);
    border-color: #fff;
    color: white;
}
.check {
    transform: scale(1.8);
}


footer a {
    color: #cccccc;
    text-decoration: none;
    cursor: pointer;
}
.footer-logo {
    width: 20vw;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    align-content: center;
}

.card:hover {
    border-color: #00e6ff;
    box-shadow: 0px 0px 15px #00e6ff;
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b84ff;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #8b84ff;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
    color: #fff;
    background: #00e6ff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.cta:hover {
    background: #008fb3;
}

/* Particle Flow */
@keyframes glow {
    0% { box-shadow: 0px 0px 15px rgba(0, 230, 255, 0.4); }
    50% { box-shadow: 0px 0px 25px rgba(0, 230, 255, 0.7); }
    100% { box-shadow: 0px 0px 15px rgba(0, 230, 255, 0.4); }
}

.card:hover {
    animation: glow 2s infinite alternate;
}


@media  screen and (max-width: 768px){
    .form-container {
        /*min-width: 157px;*/
        max-width: 96%;
        padding: 2px 4px;
        gap: 2px;
    }
    .check {
        transform: scale(1.26);
    }
    .footer-logo {
        width: 80vw;
    }
}