﻿.hiddenElement {
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    border: none;
    padding: 0;
    margin: 0;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
    text-align: center;
}

.logo img {
    max-height: 80px;
    object-fit: cover;
}

.toast-body {
    color: white;
}

.baslik h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

    .baslik h1.special {
        color: #ed1c24 !important;
    }

/* Form düzenlemeleri */
.form-container {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Progress bar düzenlemeleri */
.progress-container {
    position: relative;
    width: 100%;
    height: 8px;
    background-color: #f3f3f3;
    border-radius: 50px;
    margin-bottom: 20px;
}

.progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, #ed1c24 0%, #f38f00 100%);
    border-radius: 50px;
}

.step-number {
    position: absolute;
    top: -20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c757d;
}

    .step-number.active {
        color: #ed1c24;
    }

    .step-number:nth-child(1) {
        left: 0%;
    }

    .step-number:nth-child(2) {
        left: 25%;
    }

    .step-number:nth-child(3) {
        left: 50%;
    }

    .step-number:nth-child(4) {
        left: 75%;
    }

    .step-number:nth-child(5) {
        left: 100%;
    }
