@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
   background-color: black !important;

}





fieldset {
    margin-bottom: 2%;
}

legend, .legend {
    text-align: center;
    color: #1CB14D;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(235, 219, 22, 1) 0%, rgba(33, 178, 76, 1) 45%, rgba(21, 186, 188, 1) 100%) bottom / 100% 2px no-repeat;
    padding-bottom: 5px; 
}

.visa-container {
    display: flex;
    justify-content: center; /* Ortalar */
    gap: 30px; /* Kutular arası boşluk */
    padding: 20px;
    flex-wrap: wrap; /* Ekran küçülürse alt satıra geçer */
}









.visa-box {
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    color: white; 
    padding: 25px;
    border-radius: 15px; /* Köşeleri yuvarlatır */
    box-shadow: 0 10px 15px rgba(0,0,0,0.3); /* Gölge efekti */
    flex: 1; /* Mevcut alanı eşit paylaşmalarını sağlar */
    min-width: 300px; /* Kutuların çok küçülmesini engeller */
    text-align: center;
    font-family: sans-serif;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid #1e8449; 
    /*display: flex;*/
    align-items: center;
    justify-content: center;
}


textarea {
    height: 80px;
    resize: none;
}

.LoadingIcon {
    display: none;
    width: 47px;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
}

    .AlseinTable td:nth-child(3n+1) {
        color: #f00;
        width: 12px;
        text-align: center;
    }

    .AlseinTable td:nth-child(3n+2) {
        padding: 3px;
        border: 1px solid black;
        color: #ffffff;
        border-radius: 5px;
        width: 150px;
        text-align: center;
        font-weight: bold;
        background: #1CB14D;
        
    }


.btn-success.btn-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    margin-top: 35px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background: #2DC76E;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px #2DC76E;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .btn-success.btn-x:hover {
        box-shadow: 0 12px 30px black;
        transform: translateY(-3px) scale(1.02);
    }

    .btn-success.btn-x::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-30deg);
        transition: all 0.7s;
    }

    .btn-success.btn-x:hover::after {
        left: 100%;
    }







.kvkk {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* YAN YANA KAYMA SORUNU ÇÖZÜLDÜ */
    justify-content: center;
    margin-top: 5rem;
    gap: 12px;
    margin-left: 7rem;
    text-align: left; /* metin sola yaslanır */
}

/* Aynı kalabilir */
.toggle-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    white-space: normal; /* Üçüncü satırın taşmasını engeller */
}






/* Switch boyutları */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

input:checked + .slider {
    background-color: #2ecc71;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

.label-text {
    font-size: 16px;
    line-height: 1.4;
    color: white;
    text-align: left;
}

.link-text {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}
