/* =====================================================
   KeyfleKazan.com - Auth Sayfaları Stil Dosyası
   (Login, Register)
   ===================================================== */

.auth-body {
    min-height: 100vh;
    background: #f8f9ff;
}

.auth-container {
    min-height: 100vh;
}

.auth-side-panel {
    background: var(--gradient-hero);
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.auth-side-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.auth-side-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 380px;
}

.auth-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 40px;
}

.auth-logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-logo-mobile {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.auth-logo-mobile span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-side-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.auth-side-content p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.auth-feature i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #999;
    margin-bottom: 30px;
}

.auth-form-wrapper .form-floating .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px 14px;
    font-size: 14px;
    transition: var(--transition);
}

.auth-form-wrapper .form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.auth-form-wrapper .form-floating label {
    font-size: 13px;
    color: #999;
}

/* Tip Seçici */
.type-selector {
    display: flex;
    gap: 10px;
    background: #f0f0f5;
    padding: 5px;
    border-radius: 12px;
}

.type-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    transition: var(--transition);
    cursor: pointer;
}

.type-btn.active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.type-btn i {
    margin-right: 5px;
}

/* Başarı Kartı */
.auth-success-card {
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: #28a745;
}

.auth-success-card h3 {
    font-weight: 700;
    color: #28a745;
}

.auth-success-card p {
    color: #666;
    font-size: 15px;
}
