/* Kayıt Sayfası Koyu Tema Stilleri */

/* Ana Container */
.register-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Kart Stilleri */
.register-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Sol Taraf - Kayıt Formu */
.register-form-section {
    background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-form-section .form-label {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input Group Stilleri */
.register-form-section .input-group-text {
    background: linear-gradient(145deg, #4a5568 0%, #2d3748 100%);
    border: 1px solid #4a5568;
    color: #a0aec0;
}

.register-form-section .input-group:focus-within .input-group-text {
    background: linear-gradient(145deg, #4a5568 0%, #2d3748 100%);
    border-color: #4a5568;
    box-shadow: none;
}

.register-form-section .form-control {
    background: linear-gradient(145deg, #4a5568 0%, #2d3748 100%);
    border: 1px solid #4a5568;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.register-form-section .form-control::placeholder {
    color: #a0aec0;
}

.register-form-section .form-control:focus {
    background: linear-gradient(145deg, #4a5568 0%, #2d3748 100%);
    border-color: #4a5568;
    box-shadow: none;
    color: #e2e8f0;
    outline: none;
}

/* Checkbox Stilleri */
.register-form-section .form-check-input {
    background-color: #4a5568;
    border-color: #4a5568;
}

.register-form-section .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.register-form-section .form-check-label {
    color: #a0aec0;
    font-weight: 500;
}

/* Buton Stilleri */
.register-form-section .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.register-form-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.register-form-section .btn-primary:active {
    transform: translateY(0);
}

/* Link Stilleri */
.register-form-section a {
    color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-form-section a:hover {
    color: #5a67d8;
    text-decoration: none;
}

/* Başlık Stilleri */
.register-form-section h3 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.register-form-section .text-muted {
    color: #a0aec0 !important;
}

/* Sağ Taraf - Tasarım */
.register-design-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

/* Animasyonlu Şekiller */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 40%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Z-index için */
.z-index-1 {
    z-index: 1;
}

/* Mobil Responsive */
@media (max-width: 767.98px) {
    .register-design-section {
        min-height: 300px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .floating-shape {
        display: none;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .register-form-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Gölge Efektleri */
.register-card {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Form Container */
.register-form-container {
    padding: 2rem;
}

@media (min-width: 992px) {
    .register-form-container {
        padding: 3rem;
    }
}

/* Border Top Stilleri */
.register-form-section .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
} 