* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    min-height: 100vh;
    overflow-y: auto;
}

h2 {
    font-weight: 600;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Left Side - Login Section */
.login-section {
    width: 43vw;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 50%;
    padding: 25px 0px;
    display: flex;
    flex-direction: column;
}

.logo {
    text-align: center;
    margin-bottom: 24px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    border-radius: 4px;
}

.logo-link:focus-visible {
    outline: 2px solid #f91942;
    outline-offset: 4px;
}

.logo img {
    height: 60px;
    width: auto;
}

.login-container h2 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.input-row .input-group {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .input-row .input-group {
        margin-bottom: 0;
    }
    
    .file-upload {
        padding: 12px;
    }
    
    .file-group {
        margin-bottom: 12px;
    }
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.01em;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.input-group input:hover {
    border-color: #f91942;
    background-color: #fff5f7;
}

.input-group input:focus {
    outline: none;
    border-color: #f91942;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
    background-color: #ffffff;
}

.input-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Alan ikonları (minimal): label tek satır olduğundan ikon sabit ofsetle
   input'a hizalanır. İkon input'tan ÖNCE eklenir; JS hata mesajı ekleme
   (input.nextSibling) yapısı bozulmaz. */
.input-group.has-icon .field-icon {
    position: absolute;
    left: 15px;
    top: 46px;
    transform: translateY(-50%);
    display: flex;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.2s ease;
}

.input-group.has-icon input {
    padding-left: 42px;
}

.input-group.has-icon:hover .field-icon,
.input-group.has-icon:focus-within .field-icon {
    color: #f91942;
}

.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f91942' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.input-group select:hover {
    border-color: #f91942;
    background-color: #fff5f7;
}

.input-group select:focus {
    outline: none;
    border-color: #f91942;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
    background-color: #ffffff;
}

.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    resize: vertical;
    min-height: 80px;
}

.input-group textarea:hover {
    border-color: #f91942;
    background-color: #fff5f7;
}

.input-group textarea:focus {
    outline: none;
    border-color: #f91942;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
    background-color: #ffffff;
}

.location-group {
    margin-bottom: 12px;
}

button {
    width: 100%;
    padding: 14px;
    background-color: #f91942;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    margin-top: 8px;
}

button:hover {
    background-color: #e31837;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 25, 66, 0.2);
}

.forgot-password {
    text-align: center;
    margin-top: 16px;
}

.forgot-password a {
    color: #f91942;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.forgot-password a:hover {
    color: #e31837;
}

/* Right Side - Slider Section */
.slider-section {
    width: 64vw;
    background-color: #fff5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    min-height: 100vh;
    padding-bottom: 80px;
}

.slider {
    width: 800px;
    height: 428px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;

}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    background-color: rgba(249, 25, 66, 0.1);
    padding: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    border-radius: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(249, 25, 66, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #f91942;
    transform: scale(1.2);
}

.segment-container {
    position: relative;
    display: flex;
    background-color: #fff5f7;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 25px;
    z-index: 1;
    overflow: visible;
}

.active-segment {
    position: absolute;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background-color: white;
    border-radius: 6px;
    transition: left 0.3s ease;
    top: 4px;
    left: 4px;
    box-shadow: 0 2px 4px rgba(249, 25, 66, 0.1);
    pointer-events: none;
    z-index: 0;
}

.segment-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 10 !important;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto !important;
    background: transparent;
}

.segment-item.active {
    color: #f91942;
}

.segment-item:hover {
    color: #e31837;
}

.register-form {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.register-form.active {
    opacity: 1;
    transform: translateX(0);
}

.login-form {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.login-form.inactive {
    opacity: 0;
    transform: translateX(-20px);
}

.info-boxes {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    justify-content: center;
    width: 100%;
}

.info-box {
    background: white;
    border: 1px solid #ffe4e9;
    padding: 50px 20px;
    border-radius: 8px;
    text-align: left;
    width: 180px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: #f91942;
    box-shadow: 0 4px 12px rgba(249, 25, 66, 0.1);
}

.info-box i {
    font-size: 28px;
    color: #f91942;
    margin-bottom: 12px;
    display: block;
}

.info-box h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-box p {
    font-size: 16px;
    color: #666;
}

.social-media {
    margin-top: 40px;
    text-align: center;
}

.social-media h4 {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-icon {
    color: #f91942;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 40px;
    background-color: #fff5f7;
    padding: 10px 10px 4px 10px;
}

.social-icon:hover {
    color: #e31837;
    background-color: #ffe4e9;
    transform: translateY(-2px);
}

.pre-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #fff5f7;
    border-top: 1px solid #ffe4e9;
}

.pre-footer p {
    color: #666;
    font-size: 11px;
    font-weight: 400;
}

.file-group {
    margin-bottom: 16px;
}

.file-upload {
    position: relative;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
    text-align: center;
    cursor: pointer;
}

.file-upload:hover {
    border-color: #f91942;
    background-color: #fff5f7;
}

.file-upload::before {
    content: '\f093';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: #f91942;
    display: block;
    margin-bottom: 10px;
}

/* Metinler HTML’de (UTF-8); CSS content bazı sunucularda Türkçe bozulmasına yol açıyordu */
.file-upload-hint {
    display: none;
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    color: #64748b;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.file-upload-hint--idle {
    display: block;
}

.file-upload.has-file .file-upload-hint--idle {
    display: none;
}

.file-upload.has-file .file-upload-hint--done {
    display: block;
    color: #10b981;
}

.file-upload.has-file:hover .file-upload-hint--done {
    display: none;
}

.file-upload.has-file:hover .file-upload-hint--change {
    display: block;
    color: #10b981;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
    background-color: #f8fafc;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 12px;
}

.file-name {
    flex: 1;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    color: #94a3b8;
    font-size: 12px;
    background-color: #e2e8f0;
    padding: 2px 8px;
    border-radius: 12px;
}

.file-error {
    color: #f91942;
    font-size: 12px;
    margin-top: 8px;
    display: none;
    background-color: #fff5f7;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #f91942;
}

.file-upload.error {
    border-color: #f91942;
    background-color: #fff5f7;
}

.file-upload.error .file-error {
    display: block;
}

.file-upload.has-file::before {
    content: '\f00c';
    color: #10b981;
}

/* Form Steps Styles */
.form-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #f91942;
    color: white;
}

.step.active .step-title {
    color: #f91942;
    font-weight: 600;
}

.step.completed .step-number {
    background: #10b981;
    color: white;
}

.step-content {
    position: relative;
    min-height: 300px;
}

.step-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
    flex-shrink: 0;
}

.help-text {
    text-align: center;
    margin-top: 16px;
}

.help-text p {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
    margin: 0;
}

.btn-prev, .btn-next {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.btn-prev {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-prev:hover {
    background: #e2e8f0;
    color: #334155;
}

.btn-next {
    background: #f91942;
    color: white;
    border: none;
    flex: 1;
}

.btn-next:hover {
    background: #e31837;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 25, 66, 0.2);
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 16px;
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* Artık <div>; yalnızca checkbox'a (ve linke) tıklayınca etkileşim olsun */
    cursor: default;
}

/* Tamamen özel checkbox: native görünüm kapalı, böylece tarayıcının
   checkbox hover halkası/animasyonu ("büyüyüp küçülme" bug'ı) oluşmaz. */
.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex: 0 0 18px;
    margin: 2px 0 0;
    padding: 0;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    box-shadow: none;
    transition: none;
    cursor: pointer;
    position: relative;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: #f91942;
    background: #fff;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #f91942;
    border-color: #f91942;
}

/* İşaret (tik) */
.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(249, 25, 66, 0.35);
    outline-offset: 2px;
}

/* Şifre gereksinim listesi — kural sağlanınca yeşile döner + tik gösterir */
.pw-gereksinimler {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.pw-gereksinimler li {
    position: relative;
    padding-left: 24px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #64748b;
    transition: color 0.2s ease;
}

.pw-gereksinimler li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pw-gereksinimler li.tamam {
    color: #16a34a;
}

.pw-gereksinimler li.tamam::before {
    border-color: #16a34a;
    background: #16a34a;
}

/* Yeşil dairenin içindeki tik işareti */
.pw-gereksinimler li.tamam::after {
    content: '';
    position: absolute;
    left: 5.5px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.kvkk-link {
    color: #f91942;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.kvkk-link:hover {
    color: #e31837;
    text-decoration: underline;
}

.checkbox-error {
    color: #f91942;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}

.checkbox-label.error + .checkbox-error {
    display: block;
}

.checkbox-label.error .checkbox-text {
    color: #f91942;
}

/* Güvenlik rozeti (SSL) */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e6f7ef;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(16,185,129,0.05);
    font-size: 12px;
    color: #374151;
    width: -webkit-fill-available;
    margin-bottom: 12px;
}

.security-badge i {
    font-size: 18px;
    color: #10b981;
    background: #ecfdf5;
    padding: 5px;
    border-radius: 50%;
}

.security-badge .badge-title {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #f91942;
}

.security-badge .badge-sub {
    font-size: 11px;
    color: #6b7280;
}

/* Input Error Styles */
.input-error {
    color: #f91942;
    font-size: 12px;
    margin-top: 8px;
    background-color: #fff5f7;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #f91942;
    animation: fadeIn 0.3s ease;
}

.input-group input.error {
    border-color: #f91942;
    background-color: #fff5f7;
}

.input-group input.error:focus {
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.1);
}

/* Input Helper Styles */
.input-helper {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    display: block;
}

.input-group input:focus + .input-helper {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Form Error Message */
.form-error {
    background-color: #fff5f7;
    border: 1px solid #f91942;
    color: #f91942;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-error.show {
    display: block;
}

/* Form Message (login/register AJAX response) */
.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}
.form-message.error {
    display: block;
    background: #fff5f7;
    border: 1px solid #f91942;
    color: #f91942;
}
.form-message.success {
    display: block;
    background: #e9f8e7;
    border: 1px solid #2e7d32;
    color: #2e7d32;
}
.form-message.warning {
    display: block;
    background: #fff7e3;
    border: 1px solid #b45309;
    color: #92400e;
}

/* ========== Tablet ve mobil (giris-yap) ========== */
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        min-height: 100vh;
    }

    .login-section {
        width: 100%;
        min-height: 0;
        flex-shrink: 0;
        padding: max(1.25rem, env(safe-area-inset-top))
            max(1rem, env(safe-area-inset-right))
            1.25rem
            max(1rem, env(safe-area-inset-left));
        box-sizing: border-box;
    }

    .login-container {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 1rem 0.75rem 1.5rem;
    }

    .slider-section {
        width: 100%;
        min-height: 0;
        flex: 1 1 auto;
        padding: 1.5rem max(1rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    }

    .slider {
        width: 100%;
        max-width: min(800px, 100%);
        height: auto;
        aspect-ratio: 800 / 428;
        margin-left: auto;
        margin-right: auto;
    }

    .slide img {
        object-fit: contain;
    }

    .slider-dots {
        bottom: 12px;
    }

    .info-boxes {
        flex-wrap: wrap;
        gap: 14px 12px;
        margin-top: 1.25rem;
        justify-content: center;
    }

    .info-box {
        width: calc(50% - 8px);
        min-width: 140px;
        max-width: 220px;
        flex: 1 1 calc(50% - 8px);
        padding: 1.25rem 0.75rem;
    }

    .info-box h3 {
        font-size: 1.05rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }

    .info-box i {
        font-size: 1.35rem;
    }

    .pre-footer {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 0;
    }

    .social-media {
        margin-top: 1.75rem;
    }

    button:hover,
    .btn-next:hover,
    .social-icon:hover,
    .info-box:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .login-container {
        max-width: 100%;
        padding: 0.75rem 0.5rem 1.25rem;
    }

    .logo img {
        height: 52px;
    }

    .segment-item {
        font-size: 13px;
        padding: 11px 8px;
    }

    .step-indicator {
        margin-bottom: 1.25rem;
        padding: 0 2px;
    }

    .step-indicator::before {
        left: 12%;
        right: 12%;
    }

    .step {
        padding: 0 6px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .step-title {
        font-size: 10px;
        line-height: 1.25;
        max-width: 72px;
    }

    .step-content {
        min-height: 0;
    }

    .info-boxes {
        gap: 10px;
    }

    .info-box {
        width: 100%;
        max-width: none;
        flex: 1 1 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
        padding: 14px 16px;
    }

    .info-box i {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .info-box h3 {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .info-box p {
        font-size: 0.8125rem;
    }

    .slider {
        border-radius: 6px;
    }

    .step-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-prev,
    .btn-next {
        min-height: 44px;
    }

    .btn-next {
        flex: 1 1 60%;
        min-width: 0;
    }

    .btn-prev {
        flex: 1 1 35%;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 16px;
    }

    .login-form.inactive,
    .register-form {
        transform: none;
    }

    .checkbox-text {
        font-size: 13px;
    }

    .file-upload-hint {
        font-size: 12px;
    }
}

/* Veteriner şifremi unuttum / şifre yenile (tek sütun) */
.vet-sifremi-page .login-section {
    width: 100%;
    min-width: 100%;
}
.vet-sifremi-page .login-container {
    max-width: 440px;
    width: 92%;
}
.vet-sifremi-aciklama {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    text-align: center;
}
.vet-sifremi-back {
    text-align: center;
    margin-top: 1.25rem;
}
.vet-sifremi-back a {
    color: #f91942;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.vet-sifremi-back a:hover {
    color: #e31837;
}
a.vet-sifremi-tek-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #f91942;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
a.vet-sifremi-tek-btn:hover {
    background-color: #e31837;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 25, 66, 0.2);
}


/* ===== İki Adımlı Doğrulama (OTP) Modal ===== */
.otp-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    padding: 20px;
}

.otp-overlay.acik {
    display: flex;
}

.otp-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    font-family: 'Quicksand', sans-serif;
}

.otp-ikon {
    font-size: 42px;
    color: #f91942;
    line-height: 1;
    margin-bottom: 10px;
}

.otp-ikon i {
    display: inline-flex;
}

.otp-box h2 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.otp-aciklama {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.otp-aciklama #otpMail {
    font-weight: 600;
    color: #1a1a1a;
}

.otp-mesaj {
    min-height: 18px;
    font-size: 13px;
    margin: 12px 0 2px;
}

.otp-mesaj.error {
    color: #dc2626;
}

.otp-mesaj.success {
    color: #16a34a;
}

.otp-mesaj.bilgi {
    color: #475569;
}

.otp-girisler {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 14px 0 20px;
}

.otp-haneli {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font-family: 'Quicksand', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.otp-haneli:focus {
    outline: none;
    border-color: #f91942;
    box-shadow: 0 0 0 3px rgba(249, 25, 66, 0.12);
}

.otp-onayla {
    width: 100%;
    padding: 13px;
    background: #f91942;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    transition: background 0.2s ease;
}

.otp-onayla:hover {
    background: #e31837;
}

.otp-onayla:disabled {
    opacity: 0.7;
    cursor: default;
}

.otp-alt {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.otp-tekrar,
.otp-vazgec {
    width: auto;
    padding: 6px;
    background: none;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.otp-tekrar {
    color: #f91942;
}

.otp-tekrar:disabled {
    color: #94a3b8;
    cursor: default;
}

.otp-vazgec {
    color: #64748b;
    font-weight: 500;
}

.otp-vazgec:hover {
    color: #1a1a1a;
}

@media (max-width: 480px) {
    .otp-haneli {
        width: 44px;
        height: 52px;
        font-size: 22px;
    }
}
