html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: #0E183B;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    outline: none;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1.2rem;
}

    .AlseinTable td {
        vertical-align: middle;
        padding: 0.5rem 1rem;
    }

    .AlseinTable tr {
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

        .AlseinTable tr:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .AlseinTable tr td:first-child {
            width: 30px;
            font-weight: bold;
            color: #ff4d4f;
            font-size: 1.3rem;
            text-align: center;
        }

        .AlseinTable tr td:nth-child(2) {
            width: 160px;
            font-weight: 600;
            color: #f1f3f5;
        }

    .AlseinTable input.form-control,
    .AlseinTable textarea.form-control {
        border-radius: 10px;
        border: 2px solid transparent;
        padding: 0.45rem 0.75rem;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.3s ease;
    }

        .AlseinTable input.form-control:focus,
        .AlseinTable textarea.form-control:focus {
            border-color: #4cc9f0;
            box-shadow: 0 0 12px rgba(76, 201, 240, 0.7);
            background-color: rgba(255, 255, 255, 0.15);
            transform: scale(1.02);
        }


fieldset {
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.7s ease-out;
}

legend {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4cc9f0;
    padding: 0 10px;
}

.btn-x {
    padding: 0.6rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 30px;
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-x::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4);
        transform: skewX(-25deg);
    }

    .btn-x:hover::before {
        animation: shine 0.75s ease forwards;
    }

    .btn-x:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 201, 240, 0.7);
    }

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
