@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --ana-renk: #DB0A38;
    --yardimci-renk: #F7F9FB;
    --metin-renk: #333;
    --buton-gradient: linear-gradient(135deg, #db0a38, #ff6b6b);
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #f9fafc 0%, #e6ebef 100%);
    color: var(--metin-renk);
    margin: 0;
    padding: 0;
}

fieldset {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 2%;
    transition: all 0.3s ease;
}

    fieldset:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

legend, .legend {
    text-align: center;
    color: var(--ana-renk);
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--ana-renk);
    padding-bottom: 4px;
}

textarea {
    height: 100px;
    resize: none;
    background: #fff;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.form-control {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 12px 14px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    color: #333;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

    .form-control:focus {
        border-color: var(--ana-renk);
        box-shadow: 0 0 8px rgba(219, 10, 56, 0.3);
        outline: none;
        background: #fff;
    }

    .form-control::placeholder {
        color: #999;
    }

select.form-control {
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23DB0A38' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
    font-weight: 500;
}

    select.form-control:hover {
        border-color: var(--ana-renk);
        box-shadow: 0 0 5px rgba(219, 10, 56, 0.2);
    }

    select.form-control:focus {
        border-color: var(--ana-renk);
        box-shadow: 0 0 10px rgba(219, 10, 56, 0.25);
    }

    select.form-control option {
        background-color: #fff;
        color: #333;
        font-weight: 500;
    }

.btn-success {
    background: var(--buton-gradient);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(219, 10, 56, 0.3);
    font-size: 1rem;
    cursor: pointer;
}

    .btn-success:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(219, 10, 56, 0.4);
    }

    .btn-success:active {
        transform: scale(0.98);
    }

.LoadingIcon {
    display: none;
    width: 47px;
}

input, select, textarea {
    margin-bottom: 12px;
}
td {
    color: #3C3C3B;
    font-size: medium;
}