/* Credential Pages Tabbed Interface Styles */
.credential-tabs-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px auto;
    border: none;
    max-width: 100%;
    width: 1400px;
}

.credential-tabs-header {
    display: flex;
    background: var(--pd_input_border);
    border-bottom: none;
}

.credential-tab-button {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: var(--rz-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}


.credential-tab-button.active {
    color: var(--pd_white);
    background: var(--rz-primary);
}

.credential-tabs-content {
    background: #ffffff;
}

.credential-tab-panel {
    display: none;
    padding: 0;
}

.credential-tab-panel.active {
    display: block;
}

.credential-form-container {
    padding: 32px;
}

.credential-form-header {
    margin-bottom: 32px;
    text-align: center;
}

.credential-form-header h3 {
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.credential-form-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 14px;
}

.credential-form {
    max-width: 600px;
    margin: 0 auto;
}

.credential-form-group {
    margin-bottom: 24px;
}

.credential-label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credential-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafbfc;
    box-sizing: border-box;
}

.credential-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.credential-form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    padding: 24px 32px;
    background: #f8f9fa;
    border-top: 1px solid #e1e8ed;
    border-radius: 0 0 12px 12px;
}

.credential-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.credential-btn.primary {
    background: var(--rz-primary);
    color: white;
}

.credential-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.credential-btn.secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.credential-btn.secondary:hover {
    background: #e9ecef;
    color: #495057;
}

.credential-category-container {
    padding: 32px;
}

.credential-category-header {
    text-align: center;
    margin-bottom: 32px;
}

.credential-category-header h3 {
    color: #2c3e50;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.credential-category-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .credential-tabs-header {
        flex-direction: column;
    }
    
    .credential-tab-button {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .credential-form-actions {
        flex-direction: column;
    }
    
    .credential-btn {
        width: 100%;
    }
}
