/* Login Sayfası Stilleri */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-header {
    text-align: center;
    padding: 40px 20px 20px;
    color: var(--white);
}

.login-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.login-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Arama Konteyneri */
.search-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-instruction {
    background: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.search-instruction i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.search-form {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    width: 100%;
}

.search-form .form-group {
    margin-bottom: 20px;
}

.search-form .form-group:last-child {
    margin-bottom: 0;
}

.search-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.search-form label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.search-form select.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-form select.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Eski harita stilleri - artık kullanılmıyor */
.map-container {
    display: none;
}

#turkey-map,
#turkey-map-old {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    padding: 24px;
    border-bottom: 2px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.modal-body {
    padding: 24px;
}

.form-search {
    position: relative;
    margin-bottom: 8px;
}

.form-search input {
    padding-left: 40px;
}

.form-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .map-instruction {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
}
