/* MKOBİ Menü elemanları Css Yapısı */
/* Card Yapısı */
.auth-card2 {
    background: #ffffff;
    border-radius: 50px;
   
    padding: 30px;
    border: 1px solid #f0f0f0;
}

/* Başlıklar */
.auth-title2 {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    text-align: center;
}
.auth-subtitle2 {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    text-align: center;
}

/* Inputlar */
.custom-input-group {
    margin-bottom: 20px;
}
.custom-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}
.modern-input {
    width: 100% !important;
    height: 50px !important;
    border: 2px solid #eef0f2 !important;
    border-radius: 10px !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    background: #f9fafb !important;
}
.modern-input:focus {
    border-color: #007bff !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1) !important;
    outline: none;
}

/* Butonlar */
.auth-actions2 {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}
.primary-btn {
    flex: 2;
    background: #007bff !important;
    color: #fff !important;
    border-radius: 10px !important;
    height: 50px;
    font-weight: 600;
    border: none;
    transition: transform 0.2s;
}
.secondary-btn {
    flex: 1;
    background: #f0f2f5 !important;
    color: #444 !important;
    border-radius: 10px !important;
    height: 50px;
    font-weight: 600;
    border: none;
}
.primary-btn:hover { background: #0056b3 !important; transform: translateY(-2px); }
.secondary-btn:hover { background: #e2e6ea !important; }

/* Linkler */
.auth-footer2 {
    text-align: center;
    margin-top: 20px;
}
.forgot-link {
    color: #007bff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}
.forgot-link:hover { text-decoration: underline; }

/* Animasyon Geçişi */
.auth-form-wrapper2 {
    animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}