@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --pink: #ff4d97;
    --purple: #9d50bb;
    --blue: #6e7ff3;
    --teal: #00f2fe;
    --dark-bg: #0f172a;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 20%, rgba(233, 65, 150, 0.3) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 162, 255, 0.3) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(124, 77, 255, 0.2) 0%, transparent 50%);
        z-index: -1;
        animation: pulseBg 15s ease-in-out infinite alternate;
    }

@keyframes pulseBg {
    0% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: scale(1.2);
        filter: hue-rotate(45deg);
    }
}



.AlseinTable {
    width: 100%;
}

    .AlseinTable td {
        width: auto;
    }








fieldset {
    background: var(--glass);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: floating 6s ease-in-out infinite;
    position: relative;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

legend {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    box-shadow: 0 10px 20px rgba(233, 65, 150, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}


td {


    color: white;
}
    .form-control {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 15px;
    border: 2px dashed var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

    .form-control:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--teal);
        box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
        transform: scale(1.02);
    }

.btn {
    margin-top: 30px;
    padding: 16px;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    background: linear-gradient(45deg, var(--pink), var(--purple), var(--blue));
    background-size: 300% 300%;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: 0.5s;
    }

    .btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 30px rgba(124, 77, 255, 0.4);
    }

        .btn:hover::before {
            left: 100%;
        }

/* === CHECKBOX (Modern Stil) === */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--teal);
    transition: 0.2s;
}

    input[type="checkbox"]:hover {
        transform: scale(1.2);
    }
