body {
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px 20px;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.form-container {
    flex: 1 1 600px;
    max-width: 500px;
}

.image-container {
    flex: 2 2 500px;
    text-align: center;
}

.image-container img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

h5 {
    font-size: 20px;
    color: #2b6cb0;
    font-weight: 700;
    margin-bottom: 30px;
}

.step-indicator {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 16px;
}

.step-indicator span {
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    color: #555;
    font-weight: 500;
}

.step-indicator .active {
    border-color: #2b6cb0;
    color: #2b6cb0;
    font-weight: 700;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group .dropdown .btn {
    height: 100%;
    border-radius: 0.375rem 0 0 0.375rem;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
}

.input-group input[type="tel"] {
    border-radius: 0 0.375rem 0.375rem 0;
}

.input-group .dropdown-menu img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    border: 1px solid #ddd;
}

.border {
    border: 1px solid #ddd;
}

.btn-submit,
.btn-next,
.btn-primary {
    background-color: #2b6cb0;
    border-color: #2b6cb0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    color: #fff;
}

.btn-submit:hover,
.btn-next:hover,
.btn-primary:hover {
    background-color: #1e4f86;
    color: #fff;
}

.form-check-label a {
    color: #2b6cb0;
    text-decoration: underline;
}

.password-rules {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #555;
    list-style: disc;
    padding-left: 20px;
}

.password-rules li {
    margin-bottom: 5px;
}

.bottom-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.bottom-link a {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 600;
}

.doc-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.doc-buttons input[type="radio"] {
    display: none;
}

.doc-buttons label {
    flex: 1;
    text-align: center;
    padding: 12px;
    border: 2px solid #d6d6d6;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.doc-buttons input[type="radio"]:checked+label {
    border-color: #2b6cb0;
    color: #2b6cb0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }
}

#countryCode {
    max-width: 120px;
    padding-left: 8px;
    font-weight: 600;
}

.transition-icon {
    transition: transform 0.3s ease;
}

.transition-icon.rotate {
    transform: rotate(180deg);
}
input::placeholder {
  color: #aaa; /* daha soluk gri */
  opacity: 1;
}
