

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #5c67a3; 
    --secondary: #47b2be; 
    --accent: #ff8e8e;
    --glass-white: rgba(255, 255, 255, 0.9);
    --border-color: rgba(226, 232, 240, 0.8);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FEFCEE;
    background-attachment: fixed;
    color: #1e293b;
    margin: 0;
    overflow-x: hidden;
}

.container {
    animation: pageReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.info-notice {
    background: var(--glass-white);
    border: none;
    border-left: 6px solid var(--secondary);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(71, 178, 190, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

    .info-notice:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 45px rgba(71, 178, 190, 0.15);
    }

    .info-notice h4 i {
        color: var(--secondary);
        animation: iconPulse 2s infinite ease-in-out;
        margin-right: 10px;
    }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.7;
        color: var(--accent);
    }
}

fieldset {
    background: var(--glass-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 60px 45px 40px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

    fieldset:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(92, 103, 163, 0.08);
        border-color: var(--secondary);
    }

legend {
    position: absolute;
    top: -22px;
    left: 40px;
    float: none;
    width: auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 12px 35px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(92, 103, 163, 0.3);
    border: none;
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 20px rgba(92, 103, 163, 0.2);
    }

    100% {
        box-shadow: 0 10px 30px rgba(71, 178, 190, 0.5);
    }
}

.form-control {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 2px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    padding: 0 18px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .form-control:focus {
        background: #fff;
        border-color: var(--secondary);
        box-shadow: 0 8px 20px rgba(71, 178, 190, 0.15);
        transform: translateX(4px);
        outline: none;
    }

input[type="file"]::file-selector-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    margin-right: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    input[type="file"]::file-selector-button:hover {
        background: var(--secondary);
    }

.btn-success {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff8e8e 0%, #ef4444 100%);
    border: none;
    padding: 18px 80px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

    .btn-success:hover {
        transform: scale(1.06) translateY(-3px);
        box-shadow: 0 20px 45px rgba(239, 68, 68, 0.45);
        filter: brightness(1.1);
    }

    .btn-success::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 25%;
        height: 200%;
        background: rgba(255, 255, 255, 0.25);
        transform: rotate(30deg);
        animation: shimmer 4s infinite ease-in-out;
    }

@keyframes shimmer {
    0% {
        left: -60%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.AlseinTable {
    width: 100%;
    border-spacing: 0 12px;
    border-collapse: separate;
}

    .AlseinTable tr {
        animation: fadeInRow 0.5s ease backwards;
    }

        .AlseinTable tr:nth-child(1) {
            animation-delay: 0.1s;
        }

        .AlseinTable tr:nth-child(2) {
            animation-delay: 0.2s;
        }

        .AlseinTable tr:nth-child(3) {
            animation-delay: 0.3s;
        }

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.AlseinTable td:nth-child(2) {
    width: 250px;
    font-weight: 700;
    color: #475569;
    font-size: 14px;
}

#simpleLoading div[style*="border-top-color"] {
    border-top-color: var(--secondary) !important;
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 992px) {
    fieldset {
        padding: 45px 20px 25px;
    }

    .AlseinTable tr {
        display: block;
        margin-bottom: 15px;
    }

    .AlseinTable td {
        display: block;
        width: 100% !important;
        padding: 0 !important;
    }

    .btn-success {
        width: 100%;
        padding: 18px 0;
    }
}
