﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --deep-blue: #29387B;
    --bright-orange: #F6821F;
    --leaf-green: #97C93E;
    --input-bg: #f8faff;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(-45deg, #1e2a5a, #29387B, #3a4ca1, #16214d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.LoadingIcon{
    display: none;
    width:36px;
}

fieldset {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px !important;
    border-radius: 35px;
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px; 
}

    .AlseinTable td:nth-child(1) {
        width: 25px;
        color: var(--bright-orange);
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        vertical-align: middle;
    }

    .AlseinTable td:nth-child(2) {
        background: var(--input-bg) !important;
        color: var(--deep-blue) !important;
        width: 200px;
        padding: 15px 20px !important;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-radius: 15px 0 0 15px !important; 
        border: 1px solid #edf2f7 !important;
        border-right: none !important;
    }

    .AlseinTable td:nth-child(3) {
        padding: 0 !important;
    }

.form-control {
    border-radius: 0 15px 15px 0 !important;
    border: 1px solid #c6ac7f !important;
    background: #ffffff !important;
    padding: 15px 20px !important;
    height: auto !important;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.AlseinTable tr:hover td:nth-child(2) {
    background: #f0f4ff !important;
    color: var(--bright-orange) !important;
}



legend {
    float: none;
    width: auto !important;
    display: inline-block;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1e2a5a 100%);
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 25px rgba(41, 56, 123, 0.3);
    border: 2px solid var(--bright-orange) !important; 
    position: relative;
    margin: -65px auto 40px auto !important; 
    display: table; 
    animation: legendFloat 3s ease-in-out infinite, legendGlow 2s alternate infinite;
}

@keyframes legendFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes legendGlow {
    from {
        box-shadow: 0 10px 20px rgba(41, 56, 123, 0.3), 0 0 0px rgba(246, 130, 31, 0);
    }

    to {
        box-shadow: 0 10px 25px rgba(41, 56, 123, 0.4), 0 0 15px rgba(246, 130, 31, 0.4);
    }
}

legend::after {
    content: "♥";
    margin-left: 10px;
    color: var(--bright-orange);
    display: inline-block;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.3);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

fieldset {
    margin-top: 50px !important;
    overflow: visible !important; 
}




.form-control:focus {
    border-color: var(--bright-orange) !important;
    background: #ffffff !important;
    box-shadow: 10px 0 20px rgba(246, 130, 31, 0.1) !important;
    transform: scale(1.01);
    z-index: 5;
}

textarea.form-control {
    height: 100px !important;
    border-radius: 0 15px 15px 15px !important;
}

input[type="file"].form-control {
    padding: 10px !important;
}

.btn-success.btn-x {
    background: linear-gradient(135deg, var(--bright-orange), #ff8d2d) !important;
    border: none !important;
    padding: 20px 60px !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    box-shadow: 0 15px 35px rgba(246, 130, 31, 0.3) !important;
    animation: heartbeat 2s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.05);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.05);
    }

    40% {
        transform: scale(1);
    }
}

.btn-success.btn-x:hover {
    background: var(--leaf-green) !important;
    box-shadow: 0 15px 35px rgba(151, 201, 62, 0.3) !important;
    animation: none;
}
#toast-container > div {
    background-color: #dc3545 !important;
    color: white !important;
}