﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

/* --- DEĞİŞKENLER & RENK PALETİ --- */
:root {
    --bg-gradient: linear-gradient(135deg, rgba(243, 108, 33, 0.85), rgba(224, 62, 92, 0.85));
    --primary: #f36c21;
    --primary-glow: rgba(243, 108, 33, 0.4);
    --secondary: #ff3e6c;
    --surface: #ffffff;
    --text-main: #2b2d42;
    --text-muted: #8d99ae;
    --border-color: #edf2f4;
    --radius-lg: 18px;
    --radius-md: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Quicksand', sans-serif;
    background-image: url("../Gorseller/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-main);
    min-height: 100vh;
    padding: 30px 15px;
    box-sizing: border-box;
}

fieldset {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 35px 30px 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    transition: var(--transition);
}

    fieldset:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
    }

legend, .legend {
    width: auto;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    border: none;
    background: transparent;
    color: #2b2d42;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

    legend::before, legend::after,
    .legend::before, .legend::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #f36c21);
    }

    legend::before, .legend::before {
        left: -60px;
    }

    legend::after, .legend::after {
        right: -60px;
        background: linear-gradient(90deg, #f36c21, transparent);
    }




.form-control,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    background-color: #f8f9fa;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    box-sizing: border-box;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0,0,0,.02);
}

    .form-control::placeholder,
    input::placeholder,
    textarea::placeholder {
        color: var(--text-muted);
        font-weight: 500;
    }

    .form-control:focus,
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    select:focus,
    textarea:focus {
        background-color: #fff;
        border-color: var(--primary);
        box-shadow: 0 0 0 5px var(--primary-glow), 0 4px 12px rgba(0,0,0,.05);
        transform: translateY(-2px);
    }

textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.5;
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff9800, #ff6f00);
    border-radius: 10px;
    border: 2px solid #f4f4f4;
    transition: .3s;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #ffb74d, #f57c00);
    }


.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    border-radius: 16px;
    background: linear-gradient(135deg,#ff7a18,#ffb347);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .3px;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(255,122,24,.35);
    transition: .35s ease;
}

    .btn-modern:hover {
        color: #fff !important;
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 18px 40px rgba(255,122,24,.45);
    }

    .btn-modern:active {
        transform: scale(.98);
    }









.LoadingIcon {
    display: none;
    width: 44px;
    height: 44px;
    border: 4px solid rgba(243, 108, 33, 0.15);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: loader-spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: 10px auto;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px 12px;
}

    .AlseinTable td:nth-child(3n+1) {
        color: var(--secondary);
        width: 20px;
        text-align: center;
        font-weight: 700;
        font-size: 1.2rem;
        text-shadow: 0 2px 4px rgba(255, 62, 108, 0.2);
    }

    .AlseinTable td:nth-child(3n+2) {
        padding: 14px 18px;
        border: none;
        color: #ffffff;
        border-radius: var(--radius-md);
        width: 160px;
        text-align: center;
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        background: linear-gradient(135deg, #f36c21 0%, #ff3e6c 100%);
        box-shadow: 0 6px 18px rgba(243, 108, 33, 0.35);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: var(--transition);
    }

        .AlseinTable td:nth-child(3n+2)::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient( 60deg, transparent, rgba(255, 255, 255, 0.25), transparent );
            transform: rotate(30deg) translateY(-100%);
            transition: transform 0.6s ease;
        }

        .AlseinTable td:nth-child(3n+2):hover::after {
            transform: rotate(30deg) translateY(100%);
        }

        .AlseinTable td:nth-child(3n+2):hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 25px rgba(243, 108, 33, 0.5);
        }

        .AlseinTable td:nth-child(3n+2):active {
            transform: translateY(-1px) scale(0.98);
            box-shadow: 0 4px 10px rgba(243, 108, 33, 0.3);
        }
