﻿body {
    background-color: #f7f9fc;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Logo, başlık */
.logo-container {
    text-align: center;
    margin-top: 10px;
}

    .logo-container img {
        max-height: 80px;
    }

/* Progressbar Alanı */
.progress-container {
    display: flex;
    justify-content: center;
    margin: 30px auto 20px;
    max-width: 900px;
}

.step {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 10px 10px 10px 35px;
    background-color: #fff;
    border-right: 1px solid #eee;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

    .step:first-child {
        border-left: 1px solid #eee;
        padding-left: 20px;
    }

    .step:last-child:after {
        content: none;
    }

    .step i {
        font-size: 20px;
        color: #f57c00;
    }

    .step.active {
        background-color: #eee;
        color: #333;
    }

        .step.active i {
            color: #f57c00;
            font-weight: bold;
        }

/* Form Kutusu */
.main-box {
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Form Alanları */
.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

input[type="text"],
input[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* CAPTCHA alanı */
.captcha-box {
    margin-top: 20px;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

/* İleri butonu */
.btn-next {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #f57c00;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

    .btn-next:hover {
        background-color: #e56700;
    }

/* Ödeme logoları */
.payment-logos {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
}

.payment-logo {
    height: 50px;
}
.form-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
    top: -15px; /* progressbar çizgisi ile hizalama */
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-primary {
    background-color: #f57c00;
    color: #fff;
    padding: 10px 22px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    transition: background 0.3s;
}

    .btn-primary:hover {
        background-color: #e06600;
    }

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px; /*40*/
    gap: 20px;
}

.payment-logo {
    height: 80px; /*32*/
    object-fit: contain;
}

body {
    background-color: #f5f7fa;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 40px 0;
}

.page-wrapper {
    max-width: 840px;
    margin: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 30px 30px;
    position: relative;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

    .logo-container img {
        max-height: 80px;
    }

    .logo-container h2 {
        margin: 10px 0 5px;
    }

.subtitle {
    color: #666;
    font-size: 16px;
}

.progressbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 950px;
    margin: 40px auto 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    font-family: sans-serif;
    font-size: 15px;
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    position: relative;
    background-color: #fff;
    color: #333;
    justify-content: center;
    font-weight: 500;
}

    .step i {
        color: #f57c00;
        font-size: 18px;
    }

    .step.active {
        background-color: #e5e5e5;
    }

