/* Form ve Video Container */
.form-video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid #00a0dd;
    background-color: #f8f9fa;
    border-radius: 0;
    box-sizing: border-box;
    gap: 20px;
    max-width: 800px; /* Form ve video için maksimum genişlik */
    margin-bottom: 50px;
    margin-top: 50px;
}

/* Form Section */
.form-section {
    width: 100%; /* Formun tam genişlikte olmasını sağla */
}

/* Video Section */
.video-section {
    width: 100%;
}

/* Form Elemanları */
h3 {
    color: #00a0dd;
    margin-bottom: 15px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #212529;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #00a0dd;
    border-radius: 0;
    box-sizing: border-box;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #00a0dd;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00a0dd;
}

button.previous-step {
    background-color: #ccc;
}

button.previous-step:hover {
    background-color: #888;
}


/* Form Container */
.form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px;
    border: 1px solid #00a0dd;
    background-color: #f8f9fa;
    border-radius: 0;
    box-sizing: border-box;
}

/* Adımlar */
.step {
    display: none;
}

.step.active {
    display: block;
}


.language-dropdown {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 999;
}

.language-button, .help-button {
    background-color: #00a0dd;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 0; /* Köşe radius'u sıfırlanmış */
    transition: background-color 0.3s ease;
    margin-bottom: 10px;

}

    .language-button:hover, .help-button:hover {
        background-color: #007bb5;
    }

.language-options, .help-options {
    display: none;
    flex-direction: column;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0; /* Köşe radius'u sıfırlanmış */
    position: absolute;
    right: 40px;
    top: 0;
    transform: translateY(-50%);
    padding: 10px;
    min-width: max-content; /* Metin alanı kadar genişlik */
    width: auto;
}

    .language-options a, .help-options a {
        color: #212529;
        text-decoration: none;
        padding: 5px 10px;
        display: block;
        transition: background-color 0.3s ease;
    }

        .language-options a:hover, .help-options a:hover {
            background-color: #00a0dd;
            color: #fff;
        }
